- handle bogus search responses more gracefully

This commit is contained in:
Oswald Buddenhagen 2002-12-28 04:02:23 +00:00
parent 39446bbef9
commit 3327572fd2

View File

@ -1329,10 +1329,8 @@ imap_append_message (imap_t * imap, int fd, message_t * msg)
{ {
arg = next_arg (&s); arg = next_arg (&s);
if (!arg) if (!arg)
{
fprintf (stderr, "IMAP error: incomplete SEARCH response\n"); fprintf (stderr, "IMAP error: incomplete SEARCH response\n");
return -1; else
}
uid = atoi (arg); uid = atoi (arg);
} }
} }