From: Matt Caswell Date: Thu, 12 Mar 2015 12:54:44 +0000 (+0000) Subject: Fix memset call in stack.c X-Git-Tag: OpenSSL_1_0_1m~15 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=f4b8760056ebc6d22666652fc34dc9ad8577856c Fix memset call in stack.c The function sk_zero is supposed to zero the elements held within a stack. It uses memset to do this. However it calculates the size of each element as being sizeof(char **) instead of sizeof(char *). This probably doesn't make much practical difference in most cases, but isn't a portable assumption. Reviewed-by: Richard Levitte (cherry picked from commit 7132ac830fa08d9a936e011d7c541b0c52115b33) --- diff --git a/crypto/stack/stack.c b/crypto/stack/stack.c index fbe9d6e756..331f907190 100644 --- a/crypto/stack/stack.c +++ b/crypto/stack/stack.c @@ -278,7 +278,7 @@ void sk_zero(_STACK *st) return; if (st->num <= 0) return; - memset((char *)st->data, 0, sizeof(st->data) * st->num); + memset((char *)st->data, 0, sizeof(*st->data) * st->num); st->num = 0; }