Loading lib/http_chunks.c +4 −0 Original line number Diff line number Diff line Loading @@ -186,10 +186,14 @@ CHUNKcode Curl_httpchunk_read(struct connectdata *conn, break; case DEFLATE: /* update conn->keep.str to point to the chunk data. */ conn->keep.str = datap; result = Curl_unencode_deflate_write(conn->data, &conn->keep, piece); break; case GZIP: /* update conn->keep.str to point to the chunk data. */ conn->keep.str = datap; result = Curl_unencode_gzip_write(conn->data, &conn->keep, piece); break; Loading Loading
lib/http_chunks.c +4 −0 Original line number Diff line number Diff line Loading @@ -186,10 +186,14 @@ CHUNKcode Curl_httpchunk_read(struct connectdata *conn, break; case DEFLATE: /* update conn->keep.str to point to the chunk data. */ conn->keep.str = datap; result = Curl_unencode_deflate_write(conn->data, &conn->keep, piece); break; case GZIP: /* update conn->keep.str to point to the chunk data. */ conn->keep.str = datap; result = Curl_unencode_gzip_write(conn->data, &conn->keep, piece); break; Loading