projects
/
platform
/
core
/
api
/
nsd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82b6156
)
Fix USE_AFTER_FREE
05/282105/1
accepted/tizen_7.0_unified_hotfix
tizen_7.0_hotfix
accepted/tizen/7.0/unified/20221110.060201
accepted/tizen/7.0/unified/hotfix/20221116.104759
accepted/tizen/unified/20220928.020835
tizen_7.0_m2_release
author
Seonah Moon
<seonah1.moon@samsung.com>
Tue, 27 Sep 2022 06:04:23 +0000
(15:04 +0900)
committer
Seonah Moon
<seonah1.moon@samsung.com>
Tue, 27 Sep 2022 06:04:30 +0000
(15:04 +0900)
Change-Id: I0136d9265a26ca0db3352866b00a8430981bf8b0
src/dns-sd/dns-sd.c
patch
|
blob
|
history
diff --git
a/src/dns-sd/dns-sd.c
b/src/dns-sd/dns-sd.c
index 71c5eff76a0e7ac499f68327344b551f18e67956..c3abd4342cb0df368b68adf4de08b24d9132ea74 100644
(file)
--- a/
src/dns-sd/dns-sd.c
+++ b/
src/dns-sd/dns-sd.c
@@
-1843,8
+1843,8
@@
static void __remove_related_handles(dnssd_handle_s *browsing_handle)
static void __remove_resolving_related_handles(dnssd_handle_s *remote_handle)
{
- __dnssd_destroy_found_service(remote_handle, GET_FOUND_DATA_P(remote_handle));
__destroy_related_resolve_data(remote_handle);
+ __dnssd_destroy_found_service(remote_handle, GET_FOUND_DATA_P(remote_handle));
}
EXPORT_API int dnssd_cancel_resolve_service(dnssd_service_h service)