2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

1121. [bug] The server could attempt to access a NULL zone

table if shutting down while resolving.
                        [RT #1587, #2054]
This commit is contained in:
Andreas Gustafsson
2001-11-14 01:01:28 +00:00
parent 2edb8bce12
commit 138cc7f283
2 changed files with 10 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
1121. [bug] The server could attempt to access a NULL zone
table if shutting down while resolving.
[RT #1587, #2054]
1120. [bug] Errors in options were not fatal. [RT #2002]
1119. [func] Added support in Win32 for NTFS file/directory ACL's

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: resolver.c,v 1.230 2001/11/12 19:05:31 gson Exp $ */
/* $Id: resolver.c,v 1.231 2001/11/14 01:01:28 gson Exp $ */
#include <config.h>
@@ -4062,6 +4062,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) {
truncated = ISC_FALSE;
finish = NULL;
if (fctx->res->exiting) {
result = ISC_R_SHUTTINGDOWN;
goto done;
}
fctx->timeouts = 0;
/*