- fix coverity issues 966593-966596
authorTim Hudson <tjh@cryptsoft.com>
Sun, 4 May 2014 20:41:22 +0000 (06:41 +1000)
committerMatt Caswell <matt@openssl.org>
Mon, 5 May 2014 23:04:59 +0000 (00:04 +0100)
crypto/srp/srp_vfy.c

index 4a3d13edf6cbf4482e007a060267d9702b73f3b3..fdca19ff7c69aff35fdc5f5032fa4db681f7b396 100644 (file)
@@ -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;