From: Richard Levitte Date: Fri, 1 Jun 2001 15:21:01 +0000 (+0000) Subject: Stop mishandling the type number in dynlock locking X-Git-Tag: OpenSSL_0_9_6c~182^2~137 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a87f50fb5a6e1cdfccebba2c3cab9ca6eae2ba26;p=oweals%2Fopenssl.git Stop mishandling the type number in dynlock locking --- diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 5da4828f88..e9c9b3b5a2 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -397,16 +397,15 @@ void CRYPTO_lock(int mode, int type, const char *file, int line) #endif if (type < 0) { - int i = -type - 1; struct CRYPTO_dynlock_value *pointer - = CRYPTO_get_dynlock_value(i); + = CRYPTO_get_dynlock_value(type); if (pointer && dynlock_lock_callback) { dynlock_lock_callback(mode, pointer, file, line); } - CRYPTO_destroy_dynlockid(i); + CRYPTO_destroy_dynlockid(type); } else if (locking_callback != NULL)