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
This commit is contained in:
hidnplayr 2014-02-08 12:24:25 +00:00
parent 5508396d48
commit 4c6ef451fb

View File

@ -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