From 3a866ab78f91873f42a13710f299bcb0f176b49c Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Thu, 25 Oct 2001 21:46:58 +0000 Subject: Bug 104065 - Stop uninitilized string warnings from getting into the error log when the login cookie doesn't exist. Patch by Dave Miller r= gerv@mozilla.org, jake@acutex.net --- process_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 416ee9ccd..9ac1e8744 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -94,7 +94,7 @@ if (defined $::FORM{'dup_id'} && $::FORM{'knob'} eq "duplicate") { # list. Thus we have to make sure this bug ID is also valid, # since a malicious cracker might alter their cookies for the purpose # gaining access to bugs they are not authorized to access. -if ( $::COOKIE{"BUGLIST"} ne "" && defined $::FORM{'id'} ) { +if ( defined $::COOKIE{"BUGLIST"} && defined $::FORM{'id'} ) { my @buglist = split( /:/ , $::COOKIE{"BUGLIST"} ); my $idx = lsearch( \@buglist , $::FORM{"id"} ); if ($idx < $#buglist) { -- cgit v1.2.3-24-g4f1b