diff options
Diffstat (limited to 'crypto/comp/comp_lib.c')
-rw-r--r-- | crypto/comp/comp_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/comp/comp_lib.c b/crypto/comp/comp_lib.c index 9feb0af43d..42d99364a9 100644 --- a/crypto/comp/comp_lib.c +++ b/crypto/comp/comp_lib.c @@ -12,7 +12,7 @@ COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) /* ZZZZZZZZZZZZZZZZ */ return (NULL); } - memset(ret, 0, sizeof(COMP_CTX)); + memset(ret, 0, sizeof(*ret)); ret->meth = meth; if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { OPENSSL_free(ret); |