Switch to unified view
a/src/bincimapmime/mime-parseonlyheader.cc | b/src/bincimapmime/mime-parseonlyheader.cc | ||
---|---|---|---|
... |
... |
||
117 | } |
117 | } |
118 | 118 | ||
119 | if (c == '\n') ++nlines; |
119 | if (c == '\n') ++nlines; |
120 | if (c == ':') break; |
120 | if (c == ':') break; |
121 | if (c == '\n') { |
121 | if (c == '\n') { |
122 | for (int i = name.length() - 1; i >= 0; --i) |
122 | for (string::size_type i = name.length() - 1; i >= 0; --i) |
123 | mimeSource->ungetChar(); |
123 | mimeSource->ungetChar(); |
124 | 124 | ||
125 | quit = true; |
125 | quit = true; |
126 | name.clear(); |
126 | name.clear(); |
127 | break; |
127 | break; |