uclient-http: set eof mark when content-length is 0
[project/uclient.git] / uclient-http.c
index 349e69cdd4aeb7a13859d0db71f5f277d3b7e580..c2bba6b5b8f2093e3b408d6d35a312673f821583 100644 (file)
@@ -655,7 +655,8 @@ static void uclient_http_headers_complete(struct uclient_http *uh)
        if (uh->eof || seq != uh->uc.seq)
                return;
 
-       if (uh->req_type == REQ_HEAD || uh->uc.status_code == 204) {
+       if (uh->req_type == REQ_HEAD || uh->uc.status_code == 204 ||
+                       uh->content_length == 0) {
                uh->eof = true;
                uclient_notify_eof(uh);
        }