http: ignore empty lines before HTTP response
authorFelix Fietkau <nbd@openwrt.org>
Thu, 21 Aug 2014 19:10:30 +0000 (21:10 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 21 Aug 2014 19:10:31 +0000 (21:10 +0200)
Fixes HTTP keepalive issues with some servers

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
uclient-http.c

index 47c890f..4633956 100644 (file)
@@ -552,6 +552,9 @@ static void uclient_parse_http_line(struct uclient_http *uh, char *data)
        if (uh->state == HTTP_STATE_REQUEST_DONE) {
                char *code;
 
+               if (!strlen(data))
+                       return;
+
                /* HTTP/1.1 */
                strsep(&data, " ");