about summary refs log tree commit homepage
path: root/lib/PublicInbox/Hval.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-07-07 20:37:35 +0000
committerEric Wong <e@yhbt.net>2020-07-10 11:27:06 +0000
commit7f454bace0442cd5ce22068ec1e098e964d82778 (patch)
tree1a3ba0012aa75a3a8a427a275c2b46ffce60813b /lib/PublicInbox/Hval.pm
parentbc18c05b1681acc9a468b298c34b12ca4db3e5bb (diff)
downloadpublic-inbox-7f454bace0442cd5ce22068ec1e098e964d82778.tar.gz
Returning an empty string for a filename makes no sense,
so instead return `undef' so the caller can setup a fallback
using the "//" operator.

This fixes uninitialized variable warnings because split()
on an empty string returns `undef', which caused to_filename
to warn on s// and tr// ops.
Diffstat (limited to 'lib/PublicInbox/Hval.pm')
-rw-r--r--lib/PublicInbox/Hval.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/Hval.pm b/lib/PublicInbox/Hval.pm
index 46a83916..e21a64a6 100644
--- a/lib/PublicInbox/Hval.pm
+++ b/lib/PublicInbox/Hval.pm
@@ -94,12 +94,12 @@ sub obfuscate_addrs ($$;$) {
 
 # like format_sanitized_subject in git.git pretty.c with '%f' format string
 sub to_filename ($) {
-        my ($s, undef) = split(/\n/, $_[0]);
+        my $s = (split(/\n/, $_[0]))[0] // return; # empty string => undef
         $s =~ s/[^A-Za-z0-9_\.]+/-/g;
         $s =~ tr/././s;
         $s =~ s/[\.\-]+\z//;
         $s =~ s/\A[\.\-]+//;
-        $s
+        $s eq '' ? undef : $s;
 }
 
 # convert a filename (or any string) to HTML attribute