Loading http.c +3 −4 Original line number Diff line number Diff line Loading @@ -1256,14 +1256,13 @@ evhttp_parse_response_line(struct evhttp_request *req, char *line) { char *protocol; char *number; char *readable; char *readable = ""; protocol = strsep(&line, " "); if (line == NULL) return (-1); number = strsep(&line, " "); if (line == NULL) return (-1); if (line != NULL) readable = line; if (strcmp(protocol, "HTTP/1.0") == 0) { Loading Loading
http.c +3 −4 Original line number Diff line number Diff line Loading @@ -1256,14 +1256,13 @@ evhttp_parse_response_line(struct evhttp_request *req, char *line) { char *protocol; char *number; char *readable; char *readable = ""; protocol = strsep(&line, " "); if (line == NULL) return (-1); number = strsep(&line, " "); if (line == NULL) return (-1); if (line != NULL) readable = line; if (strcmp(protocol, "HTTP/1.0") == 0) { Loading