diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 070cf5969..c99851810 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -240,7 +240,7 @@ void CRYPTO_destroy_dynlockid(int i) } else #endif - if (--(pointer->references) <= 0) + if (pointer->references <= 0) { sk_CRYPTO_dynlock_set(dyn_locks, i, NULL); } @@ -399,7 +399,7 @@ void CRYPTO_lock(int mode, int type, const char *file, int line) struct CRYPTO_dynlock_value *pointer = CRYPTO_get_dynlock_value(i); - if (pointer) + if (pointer && dynlock_lock_callback) { dynlock_lock_callback(mode, pointer, file, line); }