Skip to content

Commit

Permalink
Merge pull request #676 from arex-ebee/deadlock-on-mdns_browse_delete…
Browse files Browse the repository at this point in the history
…-call

[mdns]: Prevent deadlock when deleting a browse request (IDFGH-13947)
  • Loading branch information
david-cermak authored Oct 25, 2024
2 parents 8520245 + 3f48f9e commit a5b0b9d
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 a5b0b9d

Please sign in to comment.