From: Tim Hudson Date: Sun, 4 May 2014 20:41:22 +0000 (+1000) Subject: - fix coverity issues 966593-966596 X-Git-Tag: OpenSSL_1_0_1h~63 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=7b7b18c57e899201338d91083bc49cc8c5a915fc - fix coverity issues 966593-966596 --- diff --git a/crypto/srp/srp_vfy.c b/crypto/srp/srp_vfy.c index 4a3d13edf6..fdca19ff7c 100644 --- a/crypto/srp/srp_vfy.c +++ b/crypto/srp/srp_vfy.c @@ -93,6 +93,9 @@ static int t_fromb64(unsigned char *a, const char *src) else a[i] = loc - b64table; ++i; } + /* if nothing valid to process we have a zero length response */ + if (i == 0) + return 0; size = i; i = size - 1; j = size;