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