By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1708
Collapse All | Expand All

(-)b/tdecore/tdehw/tdestoragedevice.cpp (-2 / +2 lines)
Lines 910-916 Link Here
910
	int pos;
910
	int pos;
911
	struct stat directory_info;
911
	struct stat directory_info;
912
	if (path.startsWith("/")) {
912
	if (path.startsWith("/")) {
913
		stat(path.ascii(), &directory_info);
913
		stat(path.local8Bit(), &directory_info);
914
		prevDev = directory_info.st_dev;
914
		prevDev = directory_info.st_dev;
915
		// Walk the directory tree up to the root, checking for any change in st_dev
915
		// Walk the directory tree up to the root, checking for any change in st_dev
916
		// If a change is found, the previous value of path is the mount point itself
916
		// If a change is found, the previous value of path is the mount point itself
Lines 923-929 Link Here
923
			if (path == "") {
923
			if (path == "") {
924
				path = "/";
924
				path = "/";
925
			}
925
			}
926
			stat(path.ascii(), &directory_info);
926
			stat(path.local8Bit(), &directory_info);
927
			if (directory_info.st_dev != prevDev) {
927
			if (directory_info.st_dev != prevDev) {
928
				break;
928
				break;
929
			}
929
			}

Return to bug 1708