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_2-beta2~234 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9740a03695f66e8d4e5b750791366c01e983d59a;p=oweals%2Fopenssl.git - 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;