Don't add write errors into bytecounts

Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Robert Swiecki 2015-05-18 19:08:02 -04:00 committed by Rich Salz
parent 6383d31645
commit 00d565cfbe

View File

@ -2290,8 +2290,10 @@ static int sv_body(char *hostname, int s, int stype, unsigned char *context)
ret = 1; ret = 1;
goto err; goto err;
} }
l += k; if (k > 0) {
i -= k; l += k;
i -= k;
}
if (i <= 0) if (i <= 0)
break; break;
} }