From fc32b813820e440e86fcae85ed9d2185e61efcaf Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 9 Dec 2014 13:38:55 +0100 Subject: smb: fix unused return code warning --- lib/smb.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/smb.c b/lib/smb.c index 079d9c706..4d556488e 100644 --- a/lib/smb.c +++ b/lib/smb.c @@ -719,9 +719,13 @@ static CURLcode smb_request_state(struct connectdata *conn, bool *done) sizeof(struct smb_header) + 11)); off = smb_swap16(*(unsigned short *)((char *)msg + sizeof(struct smb_header) + 13)); - if(len > 0) - Curl_client_write(conn, CLIENTWRITE_BODY, - (char *)msg + off + sizeof(unsigned int), len); + if(len > 0) { + result = Curl_client_write(conn, CLIENTWRITE_BODY, + (char *)msg + off + sizeof(unsigned int), + len); + if(result) + return result; + } conn->data->req.bytecount += len; conn->data->req.offset += len; Curl_pgrsSetDownloadCounter(conn->data, conn->data->req.bytecount); -- cgit v1.2.3