提交 80340f1f 编写于 作者: R Richard Levitte

Don't decrement the reference counter twice when destroying dynamic

links.
上级 d918f851
...@@ -242,7 +242,7 @@ void CRYPTO_destroy_dynlockid(int i) ...@@ -242,7 +242,7 @@ void CRYPTO_destroy_dynlockid(int i)
} }
else else
#endif #endif
if (--(pointer->references) <= 0) if (pointer->references <= 0)
{ {
sk_CRYPTO_dynlock_set(dyn_locks, i, NULL); sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
} }
...@@ -401,7 +401,7 @@ void CRYPTO_lock(int mode, int type, const char *file, int line) ...@@ -401,7 +401,7 @@ void CRYPTO_lock(int mode, int type, const char *file, int line)
struct CRYPTO_dynlock_value *pointer struct CRYPTO_dynlock_value *pointer
= CRYPTO_get_dynlock_value(i); = CRYPTO_get_dynlock_value(i);
if (pointer) if (pointer && dynlock_lock_callback)
{ {
dynlock_lock_callback(mode, pointer, file, line); dynlock_lock_callback(mode, pointer, file, line);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册