From 0d3b1ca0fd50904a994196bb8b0b9021ea11a414 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 9 Mar 2015 16:15:55 +0800 Subject: Bug 1139755: Fix 'Use of uninitialized value' warning --- Bugzilla/WebService/Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/WebService') diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm index 9bd079330..cba18c31e 100644 --- a/Bugzilla/WebService/Util.pm +++ b/Bugzilla/WebService/Util.pm @@ -285,7 +285,7 @@ sub fix_credentials { # This allows callers to keep credentials out of GET request query-strings if ($cgi) { foreach my $field (keys %{ X_HEADERS() }) { - next if exists $params->{X_HEADERS->{$field}} || $cgi->http($field) eq ''; + next if exists $params->{X_HEADERS->{$field}} || $cgi->http($field) // '' eq ''; $params->{X_HEADERS->{$field}} = uri_unescape($cgi->http($field)); } } -- cgit v1.2.3-24-g4f1b