Skip to content

Commit

Permalink
fix(mdns): Prevent deadlock when deleting a browse request
Browse files Browse the repository at this point in the history
  • Loading branch information
arex-ebee committed Oct 25, 2024
1 parent 8520245 commit 3f48f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/mdns/mdns.c
Original file line number Diff line number Diff line change
Expand Up @@ -6996,7 +6996,7 @@ static void _mdns_browse_item_free(mdns_browse_t *browse)
free(browse->service);
free(browse->proto);
if (browse->result) {
mdns_query_results_free(browse->result);
_mdns_query_results_free(browse->result);
}
free(browse);
}
Expand Down

0 comments on commit 3f48f9e

Please sign in to comment.