From 2823e7d3d291c77bf4bef8c1576076ed44c2185c Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 21 Dec 2013 17:45:40 +0100 Subject: Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non-cookie based authentication method r=dkl a=justdave --- Bugzilla/Auth/Persist/Cookie.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Auth') diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm index 57fa9624e..ace474635 100644 --- a/Bugzilla/Auth/Persist/Cookie.pm +++ b/Bugzilla/Auth/Persist/Cookie.pm @@ -127,7 +127,7 @@ sub logout { $login_cookie = $cookie->value; } else { - $login_cookie = $cgi->cookie("Bugzilla_logincookie"); + $login_cookie = $cgi->cookie("Bugzilla_logincookie") || ''; } trick_taint($login_cookie); -- cgit v1.2.3-24-g4f1b