summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2001-02-24 06:40:03 +0100
committercyeh%bluemartini.com <>2001-02-24 06:40:03 +0100
commit9fefac12fc5c13b42640963af384c9eb657ae4d3 (patch)
tree3e346ce187ea44f632d6f74acdeda77bba93af9f /CGI.pl
parentf86b4e5236c979f12f6034a04f2f971f368f5b7b (diff)
downloadbugzilla-9fefac12fc5c13b42640963af384c9eb657ae4d3.tar.gz
bugzilla-9fefac12fc5c13b42640963af384c9eb657ae4d3.tar.xz
fix for 54566: Software error generated when adding invalid dependencies
if we call PuntTryAgain(), make sure we've unlocked tables
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/CGI.pl b/CGI.pl
index 7ac110e30..c557473a8 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -967,6 +967,7 @@ sub PuntTryAgain ($) {
my ($str) = (@_);
print PerformSubsts(Param("errorhtml"),
{errormsg => $str});
+ SendSQL("UNLOCK TABLES");
PutFooter();
exit;
}