diff options
Diffstat (limited to 'rfc2047.c')
-rw-r--r-- | rfc2047.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc2047.c b/rfc2047.c index 40f750e..7aa824b 100644 --- a/rfc2047.c +++ b/rfc2047.c @@ -168,7 +168,7 @@ blaze822_decode_rfc2047(char *dst, char *src, size_t dlen, char *tgtenc) b = stop + 2; } while (s = strstr(b, "=?")); - while (*b && dlen-- >= 0) + while (*b && dlen-- > 0) *dst++ = *b++; *dst = 0; |