From 4c6ef451fb1e5bce3dc3049e5208bffb1fb2bf28 Mon Sep 17 00:00:00 2001 From: hidnplayr Date: Sat, 8 Feb 2014 12:24:25 +0000 Subject: [PATCH] HTTP lib: fix bug where last piece of data was not received during non-chunked transfer. git-svn-id: svn://kolibrios.org@4561 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/libraries/http/http.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/develop/libraries/http/http.asm b/programs/develop/libraries/http/http.asm index f32071669c..90e08b531f 100644 --- a/programs/develop/libraries/http/http.asm +++ b/programs/develop/libraries/http/http.asm @@ -521,7 +521,7 @@ proc HTTP_process identifier ;////////////////////////////////////////////////// mov edi, [ebp + http_msg.write_ptr] add [ebp + http_msg.write_ptr], eax sub [ebp + http_msg.buffer_length], eax - jz .got_all_data +; jz .got_all_data ; If data is chunked, combine chunks into contiguous data. test [ebp + http_msg.flags], FLAG_CHUNKED