From 4a3c615a85e11ddf3c8b50e322afee6db41d7b3f Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Thu, 11 Jan 2007 22:51:32 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20366738:=20Use=20of=20uninitialized=20valu?= =?UTF-8?q?e=20in=20numeric=20eq=20(=3D=3D)=20in=20./importxml.pl=20if=20t?= =?UTF-8?q?he=20bug=20is=20not=20visible=20to=20the=20reporter=20and=20the?= =?UTF-8?q?=20CC=20list=20-=20Patch=20by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric?= =?UTF-8?q?=20Buclin=20=20r=3Dmyk=20r=3Dghendricks=20a?= =?UTF-8?q?=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@218230 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/importxml.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/importxml.pl b/mozilla/webtools/bugzilla/importxml.pl index bd10e654031..c19f6d96fa6 100755 --- a/mozilla/webtools/bugzilla/importxml.pl +++ b/mozilla/webtools/bugzilla/importxml.pl @@ -612,10 +612,10 @@ sub process_bug { # Bug Access push( @query, "cclist_accessible" ); - push( @values, $bug_fields{'cclist_accessible'} == 1 ? 1 : 0 ); + push( @values, $bug_fields{'cclist_accessible'} ? 1 : 0 ); push( @query, "reporter_accessible" ); - push( @values, $bug_fields{'reporter_accessible'} == 1 ? 1 : 0 ); + push( @values, $bug_fields{'reporter_accessible'} ? 1 : 0 ); # Product and Component if there is no valid default product and # component defined in the parameters, we wouldn't be here