From 1f5413655f09c5714ac1b6fe5a34e5b38db3e9f2 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 9 Mar 2015 16:15:12 +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') diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm index 5d7dd7dd6..4eae66bd3 100644 --- a/Bugzilla/WebService/Util.pm +++ b/Bugzilla/WebService/Util.pm @@ -275,7 +275,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