From f19ca3cf1d7cae69c0419a16d2847f46baf2a287 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 4 Mar 2018 23:56:39 -0500 Subject: Backport 1136125 to bmo - Reduce memory usage of Bugzilla::CGI->send_cookie() --- Bugzilla/CGI.pm | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 41b418f6a..3906156c4 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -661,16 +661,7 @@ sub should_set { # pass them around to all of the callers. Instead, store them locally here, # and then output as required from |header|. sub send_cookie { - my $self = shift; - - # Move the param list into a hash for easier handling. - my %paramhash; - my @paramlist; - my ($key, $value); - while ($key = shift) { - $value = shift; - $paramhash{$key} = $value; - } + my ($self, %paramhash) = @_; # Complain if -value is not given or empty (bug 268146). if (!exists($paramhash{'-value'}) || !$paramhash{'-value'}) { @@ -684,13 +675,7 @@ sub send_cookie { $paramhash{'-secure'} = 1 if lc( $uri->scheme ) eq 'https'; - - # Move the param list back into an array for the call to cookie(). - foreach (keys(%paramhash)) { - unshift(@paramlist, $_ => $paramhash{$_}); - } - - push(@{$self->{'Bugzilla_cookie_list'}}, $self->cookie(@paramlist)); + push(@{$self->{'Bugzilla_cookie_list'}}, $self->cookie(%paramhash)); } # Cookies are removed by setting an expiry date in the past. -- cgit v1.2.3-24-g4f1b