From 35d5456f337487033cf02bed86bdabfefd151946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20AUZEMERY?= <86488911+Aurum-Vale@users.noreply.github.com> Date: Fri, 5 Jul 2024 20:33:03 +0200 Subject: [PATCH] Fix another instance of the entropy clear infinite loop --- drbg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drbg.c b/drbg.c index 592e2be..4ce8ad9 100644 --- a/drbg.c +++ b/drbg.c @@ -400,7 +400,6 @@ static drbg_error _drbg_reseed(drbg_ctx *ctx, if(entropy_pool != NULL){ if(clear_entropy_input(entropy_pool)){ ret = DRBG_ENTROPY_ERROR; - goto err; } }