summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-10-25 23:46:58 +0200
committerjake%acutex.net <>2001-10-25 23:46:58 +0200
commit3a866ab78f91873f42a13710f299bcb0f176b49c (patch)
treedffaf8dcfde7aa423bc16223ed5ad844ef1bbdba /process_bug.cgi
parentfee1c812c7eac574ccfd50c57e796e690ba049e4 (diff)
downloadbugzilla-3a866ab78f91873f42a13710f299bcb0f176b49c.tar.gz
bugzilla-3a866ab78f91873f42a13710f299bcb0f176b49c.tar.xz
Bug 104065 - Stop uninitilized string warnings from getting into the error log when the login cookie doesn't exist.
Patch by Dave Miller <justdave@syndicomm.com> r= gerv@mozilla.org, jake@acutex.net
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi2
1 files changed, 1 insertions, 1 deletions
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) {