Skip to content

Commit

Permalink
fix(mdns): fix copy delegated host addr
Browse files Browse the repository at this point in the history
  • Loading branch information
DejinChen committed Jan 3, 2024
1 parent 7d0eb5c commit 19fb360
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/mdns/mdns.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 19fb360

Please sign in to comment.