diff options
author | cyeh%bluemartini.com <> | 2001-02-24 06:40:03 +0100 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2001-02-24 06:40:03 +0100 |
commit | 9fefac12fc5c13b42640963af384c9eb657ae4d3 (patch) | |
tree | 3e346ce187ea44f632d6f74acdeda77bba93af9f | |
parent | f86b4e5236c979f12f6034a04f2f971f368f5b7b (diff) | |
download | bugzilla-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
-rw-r--r-- | CGI.pl | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -967,6 +967,7 @@ sub PuntTryAgain ($) { my ($str) = (@_); print PerformSubsts(Param("errorhtml"), {errormsg => $str}); + SendSQL("UNLOCK TABLES"); PutFooter(); exit; } |