From 2f837a89b3803d904644a79286084c06d21c678c Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Mon, 29 Nov 2010 22:43:41 +0100 Subject: [PATCH] fix thunderbird hack breakage for 1,14,4 --- src/internfile/mh_mbox.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/internfile/mh_mbox.cpp b/src/internfile/mh_mbox.cpp index fb663ee1..035b0eeb 100644 --- a/src/internfile/mh_mbox.cpp +++ b/src/internfile/mh_mbox.cpp @@ -427,8 +427,8 @@ bool MimeHandlerMbox::next_document() m_lineno++; int ll; stripendnl(line, ll); - LOGDEB2(("Start: hadempty %d ll %d Line: [%s]\n", - hademptyline, ll, line)); + LOGDEB2(("Start: hadempty %d lineno %d ll %d Line: [%s]\n", + hademptyline, m_lineno, ll, line)); if (ll <= 0) { hademptyline = true; continue; @@ -471,6 +471,7 @@ bool MimeHandlerMbox::next_document() // Rewind to start of "From " line fseek(fp, end, SEEK_SET); m_lineno--; + hademptyline = true; break; } }