You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
398 B
16 lines
398 B
12 years ago
|
--- kdepim-3.5.13.1/kioslaves/imap4/imapparser.h~ 2012-09-26 14:43:52.932265697 +0200
|
||
|
+++ kdepim-3.5.13.1/kioslaves/imap4/imapparser.h 2012-09-26 14:45:33.190317168 +0200
|
||
|
@@ -94,7 +94,11 @@
|
||
|
}
|
||
|
uint length()
|
||
|
{
|
||
|
- return data.size() - pos;
|
||
|
+ if( pos < data.size() ) {
|
||
|
+ return data.size() - pos;
|
||
|
+ } else {
|
||
|
+ return 0;
|
||
|
+ }
|
||
|
}
|
||
|
void fromString(const TQString &s)
|
||
|
{
|