提交 b9b6e14b 编写于 作者: R Richard Levitte

In CRYPTO_lock(), check that the application cares about locking (provided

callbacks) before attempting to lock.
上级 442d4230
......@@ -472,17 +472,17 @@ void CRYPTO_lock(int mode, int type, const char *file, int line)
#endif
if (type < 0)
{
struct CRYPTO_dynlock_value *pointer
= CRYPTO_get_dynlock_value(type);
if (dynlock_lock_callback != NULL)
{
struct CRYPTO_dynlock_value *pointer
= CRYPTO_get_dynlock_value(type);
OPENSSL_assert(pointer != NULL);
OPENSSL_assert(pointer != NULL);
if (dynlock_lock_callback)
{
dynlock_lock_callback(mode, pointer, file, line);
}
CRYPTO_destroy_dynlockid(type);
CRYPTO_destroy_dynlockid(type);
}
}
else
if (locking_callback != NULL)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册