From: Norbert Pocs Date: Fri, 16 May 2025 09:09:51 +0000 (+0200) Subject: apps/prime.c: Remove unused assignment X-Git-Tag: openssl-3.6.0-alpha1~730 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a6a098bf1de21094e258906c51c67569db7c5a4;p=thirdparty%2Fopenssl.git apps/prime.c: Remove unused assignment The variable is never read after the assignment. Coverity issue: 1646789 Signed-off-by: Norbert Pocs Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27636) --- diff --git a/apps/prime.c b/apps/prime.c index 1e149a3bd5d..fbc20ccb311 100644 --- a/apps/prime.c +++ b/apps/prime.c @@ -203,7 +203,6 @@ opthelp: BIO_printf(bio_err, "Read error in %s\n", argv[0]); BIO_free(in); - in = NULL; } } }