# | Line 154 | Line 154 | bool Processor::process(HttpHandler& htt | |
---|---|---|
154 | unsigned close = line.find('>', begin); | |
155 | ||
156 | string next; | |
157 | < | while (close == string::npos) |
157 | > | while (close == string::npos && http.good()) |
158 | { | |
159 | http.getline(next); | |
160 | line += '\n' + next; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |