X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=crypto%2Fcomp%2Fcomp_lib.c;h=6ae2114496b03b24a18cc4b5f19e69719f16b805;hb=fe1128dc2a6e7aae9010cf6595c78245e0eefd46;hp=c199bb352f139f9a5768402cf9a07cdfd245b709;hpb=e6e9170d6e28038768895e1af18e3aad8093bf4b;p=openssl.git diff --git a/crypto/comp/comp_lib.c b/crypto/comp/comp_lib.c index c199bb352f..6ae2114496 100644 --- a/crypto/comp/comp_lib.c +++ b/crypto/comp/comp_lib.c @@ -1,5 +1,5 @@ /* - * Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1998-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -12,14 +12,17 @@ #include #include #include +#include #include "comp_lcl.h" COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) { COMP_CTX *ret; - if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) + if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) { + COMPerr(COMP_F_COMP_CTX_NEW, ERR_R_MALLOC_FAILURE); return NULL; + } ret->meth = meth; if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { OPENSSL_free(ret);