From fba28f19754f62b5227650143d5441fc86d4c7d7 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Wed, 25 Apr 2018 21:33:33 +0200 Subject: Revert "Update NSS to 3.35-RTM" This reverts commit f1a0f0a56fdd0fc39f255174ce08c06b91c66c94. --- security/nss/lib/freebl/det_rng.c | 27 +++++---------------------- 1 file changed, 5 insertions(+), 22 deletions(-) (limited to 'security/nss/lib/freebl/det_rng.c') diff --git a/security/nss/lib/freebl/det_rng.c b/security/nss/lib/freebl/det_rng.c index 53d48bc7c..04fce30e8 100644 --- a/security/nss/lib/freebl/det_rng.c +++ b/security/nss/lib/freebl/det_rng.c @@ -8,22 +8,19 @@ #include "nssilock.h" #include "seccomon.h" #include "secerr.h" -#include "prinit.h" #define GLOBAL_BYTES_SIZE 100 static PRUint8 globalBytes[GLOBAL_BYTES_SIZE]; static unsigned long globalNumCalls = 0; static PZLock *rng_lock = NULL; -static PRCallOnceType coRNGInit; -static const PRCallOnceType pristineCallOnce; -static PRStatus -rng_init(void) +SECStatus +RNG_RNGInit(void) { rng_lock = PZ_NewLock(nssILockOther); if (!rng_lock) { PORT_SetError(SEC_ERROR_LIBRARY_FAILURE); - return PR_FAILURE; + return SECFailure; } /* --- LOCKED --- */ PZ_Lock(rng_lock); @@ -31,17 +28,6 @@ rng_init(void) PZ_Unlock(rng_lock); /* --- UNLOCKED --- */ - return PR_SUCCESS; -} - -SECStatus -RNG_RNGInit(void) -{ - /* Allow only one call to initialize the context */ - if (PR_CallOnce(&coRNGInit, rng_init) != PR_SUCCESS) { - return SECFailure; - } - return SECSuccess; } @@ -111,11 +97,8 @@ RNG_GenerateGlobalRandomBytes(void *dest, size_t len) void RNG_RNGShutdown(void) { - if (rng_lock) { - PZ_DestroyLock(rng_lock); - rng_lock = NULL; - } - coRNGInit = pristineCallOnce; + PZ_DestroyLock(rng_lock); + rng_lock = NULL; } /* Test functions are not implemented! */ -- cgit v1.2.3