From ee95edb6a42df4b45c82080c32f852781f289a02 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 13 Oct 2013 02:08:28 -0600 Subject: * Fixes in Pico so that it will crash in big files, instead of looping forever. Todo: see how this can be improved. * Add support for UID EXPUNGE in selected folders. --- pico/fileio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pico/fileio.c') diff --git a/pico/fileio.c b/pico/fileio.c index 5cf124c0..91eacf9d 100644 --- a/pico/fileio.c +++ b/pico/fileio.c @@ -95,6 +95,7 @@ ffgetline(UCS buf[], size_t nbuf, size_t *charsreturned, int msg) { size_t i; UCS ucs; + static int displayed = 0; if(charsreturned) *charsreturned = 0; @@ -121,8 +122,10 @@ ffgetline(UCS buf[], size_t nbuf, size_t *charsreturned, int msg) if(charsreturned) *charsreturned = nbuf - 1; - if(msg) + if(msg && displayed == 0){ emlwrite("File has long line", NULL); + displayed = 1; + } return FIOLNG; } -- cgit v1.2.3-54-g00ecf