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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user