From b1088c0c14b9a28102eb79c44e844f37286b4679 Mon Sep 17 00:00:00 2001 From: job Date: Mon, 11 Sep 2023 00:50:47 +0000 Subject: [PATCH] Back out superfluous initialization requested by jsing@ --- lib/libcrypto/x509/x509_addr.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/libcrypto/x509/x509_addr.c b/lib/libcrypto/x509/x509_addr.c index 735891fd20d..a0da2af6f63 100644 --- a/lib/libcrypto/x509/x509_addr.c +++ b/lib/libcrypto/x509/x509_addr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_addr.c,v 1.88 2023/09/06 15:53:07 job Exp $ */ +/* $OpenBSD: x509_addr.c,v 1.89 2023/09/11 00:50:47 job Exp $ */ /* * Contributed to the OpenSSL Project by the American Registry for * Internet Numbers ("ARIN"). @@ -676,10 +676,9 @@ i2r_IPAddrBlocks(const X509V3_EXT_METHOD *method, void *ext, BIO *out, { const IPAddrBlocks *addr = ext; IPAddressFamily *af; - uint16_t afi = 0; - uint8_t safi = 0; - int safi_is_set = 0; - int i; + uint16_t afi; + uint8_t safi; + int i, safi_is_set; for (i = 0; i < sk_IPAddressFamily_num(addr); i++) { af = sk_IPAddressFamily_value(addr, i); -- 2.20.1