Bug 366738: Use of uninitialized value in numeric eq (==) in ./importxml.pl if the bug is not visible to the reporter and the CC list - Patch by Frédéric Buclin <LpSolit@gmail.com> r=myk r=ghendricks a=LpSolit

git-svn-id: svn://10.0.0.236/trunk@218230 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2007-01-11 22:51:32 +00:00
parent f92a4f7139
commit 4a3c615a85

View File

@@ -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