aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-05-31 22:25:30 +0000
committerRichard Levitte <levitte@openssl.org>2001-05-31 22:25:30 +0000
commit80340f1fe96f49d9c64ad6486b4b05151e449931 (patch)
tree38f402a07eceeb8b4c3e7723bb04a1d0c6b07e9c /crypto/cryptlib.c
parentd918f85146ca8e01d721518aac7575976aebdfd1 (diff)
downloadopenssl-80340f1fe96f49d9c64ad6486b4b05151e449931.tar.gz
Don't decrement the reference counter twice when destroying dynamic
links.
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 5871216b0b..5da4828f88 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -242,7 +242,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);
}
@@ -401,7 +401,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);
}