From 53f88c7858cde2fe86c0920fd2dce8d455ffa9ca Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" Date: Fri, 23 Feb 2001 21:40:03 +0000 Subject: [PATCH] fix for 54566: Software error generated when adding invalid dependencies if we call PuntTryAgain(), make sure we've unlocked tables git-svn-id: svn://10.0.0.236/trunk@87835 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/CGI.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/mozilla/webtools/bugzilla/CGI.pl b/mozilla/webtools/bugzilla/CGI.pl index 7ac110e3066..c557473a835 100644 --- a/mozilla/webtools/bugzilla/CGI.pl +++ b/mozilla/webtools/bugzilla/CGI.pl @@ -967,6 +967,7 @@ sub PuntTryAgain ($) { my ($str) = (@_); print PerformSubsts(Param("errorhtml"), {errormsg => $str}); + SendSQL("UNLOCK TABLES"); PutFooter(); exit; }