From 6c1a678e0b7b430d563f628c601cf149f62a96bf Mon Sep 17 00:00:00 2001 From: tb Date: Sun, 23 Apr 2023 11:39:56 +0000 Subject: [PATCH] Drop a superfluous isneg check. --- lib/libcrypto/x509/x509_utl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/x509/x509_utl.c b/lib/libcrypto/x509/x509_utl.c index 51c3135bbe6..411b0408f9c 100644 --- a/lib/libcrypto/x509/x509_utl.c +++ b/lib/libcrypto/x509/x509_utl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_utl.c,v 1.12 2023/04/23 11:34:57 tb Exp $ */ +/* $OpenBSD: x509_utl.c,v 1.13 2023/04/23 11:39:56 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -273,7 +273,7 @@ s2i_ASN1_INTEGER(X509V3_EXT_METHOD *method, const char *value) return NULL; } - if (isneg && BN_is_zero(bn)) + if (BN_is_zero(bn)) isneg = 0; aint = BN_to_ASN1_INTEGER(bn, NULL); -- 2.20.1