diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 21:18:30 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 21:18:30 -0500 |
commit | fdcb16661603d4aff52480ba1d68f37562d1dc4d (patch) | |
tree | 377d23a538036bed8a773da5329d979d959a1a68 /mailnews/imap/src/nsImapServerResponseParser.h | |
parent | e661493bb0440e66b4c8af56a81c88e878dd1365 (diff) | |
download | UXP-fdcb16661603d4aff52480ba1d68f37562d1dc4d.tar UXP-fdcb16661603d4aff52480ba1d68f37562d1dc4d.tar.gz UXP-fdcb16661603d4aff52480ba1d68f37562d1dc4d.tar.lz UXP-fdcb16661603d4aff52480ba1d68f37562d1dc4d.tar.xz UXP-fdcb16661603d4aff52480ba1d68f37562d1dc4d.zip |
Bug 145113 - Make "next chunk starts with newline" flag a member variable to fix MOZ_ASSERT().
Tag #1273
Diffstat (limited to 'mailnews/imap/src/nsImapServerResponseParser.h')
-rw-r--r-- | mailnews/imap/src/nsImapServerResponseParser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mailnews/imap/src/nsImapServerResponseParser.h b/mailnews/imap/src/nsImapServerResponseParser.h index fb5762b6b..4a21de905 100644 --- a/mailnews/imap/src/nsImapServerResponseParser.h +++ b/mailnews/imap/src/nsImapServerResponseParser.h @@ -256,6 +256,9 @@ private: int32_t charsReadSoFar; bool fLastChunk; + // Flags split of \r and \n between chunks in msg_fetch_literal(). + bool fNextChunkStartsWithNewline; + // points to the current body shell, if any RefPtr<nsIMAPBodyShell> m_shell; |