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

(-)kdepim/kioslaves/imap4/imapparser.cc.segv (-2 / +6 lines)
Lines 1354-1363 Link Here
1354
        label = parseOneWordC (inWords);
1354
        label = parseOneWordC (inWords);
1355
      }
1355
      }
1356
1356
1357
      if (inWords[0] == ')')
1357
      if (!inWords.isEmpty () && inWords[0] == ')')
1358
        inWords.pos++;
1358
        inWords.pos++;
1359
    }
1359
    }
1360
    if (inWords[0] == ']')
1360
    if (!inWords.isEmpty () && inWords[0] == ']')
1361
      inWords.pos++;
1361
      inWords.pos++;
1362
    skipWS (inWords);
1362
    skipWS (inWords);
1363
1363
Lines 1479-1484 Link Here
1479
    {
1479
    {
1480
      TQCString word = parseLiteralC(inWords, false, true);
1480
      TQCString word = parseLiteralC(inWords, false, true);
1481
1481
1482
      if(!word.isEmpty()) {
1482
      switch (word[0])
1483
      switch (word[0])
1483
      {
1484
      {
1484
      case 'E':
1485
      case 'E':
Lines 1602-1607 Link Here
1602
        parseLiteralC(inWords);
1603
        parseLiteralC(inWords);
1603
        break;
1604
        break;
1604
      }
1605
      }
1606
      } else {
1607
        parseLiteralC(inWords);
1608
	  }
1605
    }
1609
    }
1606
  }
1610
  }
1607
1611

Return to bug 1009