From: lpsolit%gmail.com <> Date: Thu, 12 Oct 2006 05:37:48 +0000 (+0000) Subject: Bug 356336: Crash when calling showdependencytree.cgi with no bug ID - Patch by Frédé... X-Git-Tag: bugzilla-2.23.3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eba7c009f236ebeb01b9c0a8994233169c8bf9ae;p=thirdparty%2Fbugzilla.git Bug 356336: Crash when calling showdependencytree.cgi with no bug ID - Patch by Frédéric Buclin r=mkanat a=myk --- diff --git a/showdependencytree.cgi b/showdependencytree.cgi index 5efa0bc9cc..dfc715cf84 100755 --- a/showdependencytree.cgi +++ b/showdependencytree.cgi @@ -49,7 +49,7 @@ my $dbh = Bugzilla->switch_to_shadow_db(); # Make sure the bug ID is a positive integer representing an existing # bug that the user is authorized to access. -my $id = $cgi->param('id'); +my $id = $cgi->param('id') || ThrowUserError('invalid_bug_id_or_alias'); ValidateBugID($id); my $current_bug = new Bugzilla::Bug($id);