From: Andy Polyakov Date: Sat, 7 Jul 2007 20:11:12 +0000 (+0000) Subject: Typo in str_lib.c X-Git-Tag: OpenSSL_0_9_8k^2~781 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aa8d6f3e8654478e22d3de6b407c6ca6f692f079;p=oweals%2Fopenssl.git Typo in str_lib.c PR: 1177 --- diff --git a/crypto/store/str_lib.c b/crypto/store/str_lib.c index c0ad763e9a..32ae5bd395 100644 --- a/crypto/store/str_lib.c +++ b/crypto/store/str_lib.c @@ -236,7 +236,7 @@ const STORE_METHOD *STORE_set_method(STORE *store, const STORE_METHOD *meth) #define check_store(s,fncode,fnname,fnerrcode) \ do \ { \ - if ((s) == NULL || (s)->meth) \ + if ((s) == NULL || (s)->meth == NULL) \ { \ STOREerr((fncode), ERR_R_PASSED_NULL_PARAMETER); \ return 0; \