From 8df0a5ba3225afbd93574b177e05fb01135c6f1f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 1 Aug 2025 15:41:31 +0200 Subject: [PATCH] release-notes: fix warning Follow-up to 2ec54556d4e3f3ab551b5 Closes #18133 --- scripts/release-notes.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.47.3