This was causing 'CID 436299: Null pointer dereferences (REVERSE_INULL)'
in Coverity. Also removed an 'INSIST(fctx != NULL);' that should
no longer be needed.
}
/* On success, the fctx is locked in get_attached_fctx() */
-
INSIST(!SHUTTINGDOWN(fctx));
/* Is this a duplicate? */
- if (fctx != NULL && client != NULL) {
+ if (client != NULL) {
dns_fetchresponse_t *resp = NULL;
for (resp = ISC_LIST_HEAD(fctx->resps); resp != NULL;
resp = ISC_LIST_NEXT(resp, link))
}
}
if (count >= spillatmin && spillatmin != 0) {
- INSIST(fctx != NULL);
if (count >= spillat) {
fctx->spilled = true;
}