Bugfix in downloader (when socket recv function returns 0, it means remote end closed the connection.)

git-svn-id: svn://kolibrios.org@4345 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2013-12-12 12:14:39 +00:00
parent 5e7711d4f6
commit 4565216705

View File

@ -369,9 +369,9 @@ read_incoming_data:
.read:
mcall recv, [socketnum], [pos], BUFFERSIZE, 0
inc eax ; -1 = error (socket closed?)
jz .error
dec eax ; 0 bytes means the remote end closed the connection
jz .no_more_data
dec eax ; 0 bytes...
jz .read
DEBUGF 1, "Got chunk of %u bytes\n", eax
@ -385,6 +385,9 @@ read_incoming_data:
pop eax
jmp .read
.error:
DEBUGF 1, "Socket error: %u\n", ebx
.no_more_data:
mov eax, [buf_ptr]
sub [pos], eax