Fixed possible bad memory access.

This commit is contained in:
Vincent Richard 2017-01-17 21:22:44 +01:00
parent 08b8ce3dc7
commit f29edeb887

View File

@ -240,8 +240,8 @@ namespace imap {
private: private:
const string& m_name; const string m_name;
string& m_line; string m_line;
size_t m_pos; size_t m_pos;
const bool& m_result; const bool& m_result;
}; };