mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 23:40:00 -04:00
remove ISC_LINK(link) property from fetchctx
Likely because of historical reasons, struct fetchctx does have a list link property but is never used as a list. Remove this link property.
This commit is contained in:
parent
93e6e72eb6
commit
c9529c0acb
1 changed files with 0 additions and 2 deletions
|
|
@ -350,7 +350,6 @@ struct fetchctx {
|
|||
bool hashed;
|
||||
bool cloned;
|
||||
bool spilled;
|
||||
ISC_LINK(struct fetchctx) link;
|
||||
ISC_LIST(dns_fetchresponse_t) resps;
|
||||
dns_edelist_t edelist;
|
||||
|
||||
|
|
@ -4782,7 +4781,6 @@ fctx_create(dns_resolver_t *res, isc_loop_t *loop, const dns_name_t *name,
|
|||
dns_view_getadb(res->view, &fctx->adb);
|
||||
|
||||
ISC_LIST_INIT(fctx->resps);
|
||||
ISC_LINK_INIT(fctx, link);
|
||||
fctx->magic = FCTX_MAGIC;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue