Ensure we don't call memcpy with a NULL pointer
authorMatt Caswell <matt@openssl.org>
Fri, 3 Mar 2017 08:56:25 +0000 (08:56 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 3 Mar 2017 23:49:24 +0000 (23:49 +0000)
Commit d5aa14dd simplified the bn_expand_internal() and BN_copy() functions.
Unfortunately it also removed some checks which are still required,
otherwise we call memcpy passing in NULL which is not allowed.

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2836)

crypto/bn/bn_lib.c

index e61c8706ec4dbab1a01e905ec7d503fcb88d297a..99179232f448dbb64c3c286c312c23cbf89915cb 100644 (file)
@@ -267,7 +267,8 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
     }
 
     assert(b->top <= words);
-    memcpy(a, b->d, sizeof(*a) * b->top);
+    if (b->top > 0)
+        memcpy(a, b->d, sizeof(*a) * b->top);
 
     return a;
 }
@@ -328,7 +329,8 @@ BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
     if (bn_wexpand(a, b->top) == NULL)
         return NULL;
 
-    memcpy(a->d, b->d, sizeof(b->d[0]) * b->top);
+    if (b->top > 0)
+        memcpy(a->d, b->d, sizeof(b->d[0]) * b->top);
 
     a->top = b->top;
     a->neg = b->neg;