summaryrefslogtreecommitdiffstats
path: root/crypto/srp
diff options
context:
space:
mode:
authorTim Hudson <tjh@cryptsoft.com>2014-05-05 06:41:22 +1000
committerMatt Caswell <matt@openssl.org>2014-05-06 00:04:59 +0100
commit9740a03695f66e8d4e5b750791366c01e983d59a (patch)
treead3420ef38c5d31a2038554397ffa714578683e9 /crypto/srp
parente34af3ec2b1230a8a523d383f7de505f7cbd381d (diff)
- fix coverity issues 966593-966596
Diffstat (limited to 'crypto/srp')
-rw-r--r--crypto/srp/srp_vfy.c3
1 files changed, 3 insertions, 0 deletions
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;