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

(-)kdepim-3.5.13.1/kioslaves/imap4/imapparser.h~ (-1 / +5 lines)
Lines 94-100 Link Here
94
  }
94
  }
95
  uint length()
95
  uint length()
96
  {
96
  {
97
    return data.size() - pos;
97
    if( pos < data.size() ) {
98
      return data.size() - pos;
99
    } else {
100
      return 0;
101
    }
98
  }
102
  }
99
  void fromString(const TQString &s)
103
  void fromString(const TQString &s)
100
  {
104
  {

Return to bug 1235