From: Richard Levitte Date: Fri, 1 Jun 2001 15:29:32 +0000 (+0000) Subject: nCipher callbacks shall return 0 on success, something else otherwise. X-Git-Tag: OpenSSL_0_9_6c~182^2~136 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=397211323cb5c631af09f302290b47c5cd441993;hp=a87f50fb5a6e1cdfccebba2c3cab9ca6eae2ba26 nCipher callbacks shall return 0 on success, something else otherwise. --- diff --git a/crypto/engine/hw_ncipher.c b/crypto/engine/hw_ncipher.c index b614b6e202..2879a10a68 100644 --- a/crypto/engine/hw_ncipher.c +++ b/crypto/engine/hw_ncipher.c @@ -1059,14 +1059,14 @@ static int hwcrhk_mutex_init(HWCryptoHook_Mutex* mt, { mt->lockid = CRYPTO_get_new_dynlockid(); if (mt->lockid == 0) - return 0; - return 1; + return -1; + return 0; } static int hwcrhk_mutex_lock(HWCryptoHook_Mutex *mt) { CRYPTO_w_lock(mt->lockid); - return 1; + return 0; } void hwcrhk_mutex_unlock(HWCryptoHook_Mutex * mt)