From 2823e7d3d291c77bf4bef8c1576076ed44c2185c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Sat, 21 Dec 2013 17:45:40 +0100 Subject: [PATCH] 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(-) diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm index 57fa9624e6..ace4746356 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); -- 2.47.2