fix(mdns): fix copy delegated host addr

This commit is contained in:
chendejin
2024-01-03 17:12:41 +08:00
parent 7d0eb5c48c
commit 19fb36000c

View File

@ -5882,6 +5882,7 @@ static mdns_ip_addr_t *_copy_delegated_host_address_list(char *hostname)
if (strcasecmp(host->hostname, hostname) == 0) {
return copy_address_list(host->address_list);
}
host = host->next;
}
return NULL;
}