fixup! Add .up pointer to slabheader

This commit is contained in:
Evan Hunt
2025-02-13 15:27:26 -08:00
parent d7c329f79d
commit 40c8a04fe0
2 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -3825,11 +3825,12 @@ rdatasetiter_next(dns_rdatasetiter_t *it DNS__DB_FLARG) {
if (header != NULL) {
break;
}
/*
* Find the start of the header chain for the next type.
*/
topheader = dns_slabheader_top(header);
topheader_next = topheader->next;
topheader = topheader->next;
header = topheader;
}
NODE_UNLOCK(nlock, &nlocktype);
+3 -2
View File
@@ -4145,11 +4145,12 @@ rdatasetiter_next(dns_rdatasetiter_t *iterator DNS__DB_FLARG) {
if (header != NULL) {
break;
}
/*
* Find the start of the header chain for the next type.
*/
topheader = dns_slabheader_top(header);
topheader_next = topheader->next;
topheader = topheader->next;
header = topheader;
}
NODE_UNLOCK(nlock, &nlocktype);