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

[master] address coverity warning about uninitialized variable

This commit is contained in:
Evan Hunt
2017-08-08 10:46:49 -07:00
parent a6ed0b587b
commit 2013c9751d

View File

@@ -6922,6 +6922,8 @@ resquery_response(isc_task_t *task, isc_event_t *event) {
(void)isc_timer_touch(fctx->timer);
rctx_respinit(task, devent, query, fctx, &rctx);
if (fctx->res->exiting) {
result = ISC_R_SHUTTINGDOWN;
FCTXTRACE("resolver shutting down");
@@ -6933,8 +6935,6 @@ resquery_response(isc_task_t *task, isc_event_t *event) {
fctx->timeout = ISC_FALSE;
fctx->addrinfo = query->addrinfo;
rctx_respinit(task, devent, query, fctx, &rctx);
/*
* Check whether the dispatcher has failed; if so we're done
*/