Commit 28a382bd 28a382bd985eaf665945e948f2a7428996d99da2 by Alain Magloire

len should be type int.

1 parent 3380b97d
......@@ -937,7 +937,7 @@ imap_quoted_string (f_imap_t f_imap, char **ptr)
{
char *bquote;
int escaped = 0;
size_t len;
int len;
(*ptr)++;
bquote = *ptr;
......