Merge pull request #469 from DejinChen/component/mdns_host_address_fix

fix(mdns): fix copy delegated host addr (IDFGH-11829)
This commit is contained in:
Suren
2024-01-04 21:13:58 +04:00
committed by GitHub

View File

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