diff options
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ static int pop3_fetch(FILE *sockfp, struct query *ctl, int number, int *lenp) *lenp = 0; else { - while (--cp > buf && isdigit(*cp)) + while (--cp >= buf && isdigit(*cp)) continue; *lenp = atoi(++cp); } |