From: Daniel Stenberg Date: Fri, 1 Aug 2025 13:41:31 +0000 (+0200) Subject: release-notes: fix warning X-Git-Tag: curl-8_16_0~290 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8df0a5ba3225afbd93574b177e05fb01135c6f1f;p=thirdparty%2Fcurl.git release-notes: fix warning Follow-up to 2ec54556d4e3f3ab551b5 Closes #18133 --- diff --git a/scripts/release-notes.pl b/scripts/release-notes.pl index 331941bc9b..593d7965a3 100755 --- a/scripts/release-notes.pl +++ b/scripts/release-notes.pl @@ -219,7 +219,9 @@ for my $l (@releasenotes) { push @o, sprintf " o %s%s\n", $f, $moreinfo{$f}? sprintf(" [%d]", $moreinfo{$f}): ""; - $refused[$moreinfo{$f}]=3; + if($moreinfo{$f}) { + $refused[$moreinfo{$f}]=3; + } } push @o, " --- new entries are listed above this ---"; next;