diff options
author | gerv%gerv.net <> | 2002-03-28 16:57:02 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2002-03-28 16:57:02 +0100 |
commit | a6123ce8c608e64ba111e30481b28297f61849aa (patch) | |
tree | dc953104b2360c095ffc64ca0106f012da46aa5c /buglist.cgi | |
parent | b5cbca2fd02b1cbf2b50a40fa6dad42da6b43d1e (diff) | |
download | bugzilla-a6123ce8c608e64ba111e30481b28297f61849aa.tar.gz bugzilla-a6123ce8c608e64ba111e30481b28297f61849aa.tar.xz |
Bug 104589 - prevent user closing window from terminating Bugzilla scripts. Patch by Gerv <gerv@mozilla.org>, r=justdave, myk
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/buglist.cgi b/buglist.cgi index 747fab520..ff31feb1f 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -1321,6 +1321,12 @@ ReconnectToShadowDatabase(); # to avoid "table out of space" errors on MySQL versions less than 3.23.2. SendSQL("SET OPTION SQL_BIG_TABLES=1") if Param('expectbigqueries'); +# Normally, we ignore SIGTERM and SIGPIPE (see globals.pl) but we need to +# respond to them here to prevent someone DOSing us by reloading a query +# a large number of times. +$::SIG{TERM} = 'DEFAULT'; +$::SIG{PIPE} = 'DEFAULT'; + # Execute the query. SendSQL($query); |