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 1405
Collapse All | Expand All

(-)kdeutils-3.0.3/kdf/disklist.cpp.label (-1 / +2 lines)
Lines 163-170 Link Here
163
    while (! t.eof()) {
163
    while (! t.eof()) {
164
      s=t.readLine();
164
      s=t.readLine();
165
      s=s.simplifyWhiteSpace();
165
      s=s.simplifyWhiteSpace();
166
      if ( (!s.isEmpty() ) && (s.find(DELIMITER)!=0) ) {
166
      if ( (!s.isEmpty() ) && (s.find(DELIMITER)!=0) && (s.find("LABEL")!=0) ) {
167
               // not empty or commented out by '#'
167
               // not empty or commented out by '#'
168
	       // skip LABEL entries as long as kdf can't handle them properly
168
	//	kdDebug() << "GOT: [" << s << "]" << endl;
169
	//	kdDebug() << "GOT: [" << s << "]" << endl;
169
	disk = new DiskEntry();// Q_CHECK_PTR(disk);
170
	disk = new DiskEntry();// Q_CHECK_PTR(disk);
170
        disk->setMounted(FALSE);
171
        disk->setMounted(FALSE);

Return to bug 1405