summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehyun Kim <jeik01.kim@samsung.com>2019-11-28 11:36:54 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2019-11-28 11:36:54 +0000
commit79ef996f2820cbaaa81d9200060f1bc537fce038 (patch)
tree2e3d15e56d74ca5ec4cb783620ef618d31356223
parente263254e6d7380fd5a18f4d54bfe9fecb2e6394d (diff)
parent4fd29ca6a782dd8f37e726cd0836c72a342ad959 (diff)
downloadconnman-79ef996f2820cbaaa81d9200060f1bc537fce038.tar.gz
connman-79ef996f2820cbaaa81d9200060f1bc537fce038.tar.bz2
connman-79ef996f2820cbaaa81d9200060f1bc537fce038.zip
Merge "Remove TIZEN_EXT for patch accepted by upstream community." into tizen
-rwxr-xr-xplugins/wifi.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/wifi.c b/plugins/wifi.c
index 57d8572c..c209da57 100755
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -5521,24 +5521,16 @@ static void sta_remove_callback(int result,
if ((result < 0) || (info->wifi->ap_supported != WIFI_AP_SUPPORTED)) {
info->wifi->tethering = false;
connman_technology_tethering_notify(info->technology, false);
-#if !defined TIZEN_EXT
-
- g_free(info->ifname);
- g_free(info->ssid);
- g_free(info);
-#endif /* !defined TIZEN_EXT */
if (info->wifi->ap_supported == WIFI_AP_SUPPORTED) {
g_free(info->wifi->tethering_param->ssid);
g_free(info->wifi->tethering_param);
info->wifi->tethering_param = NULL;
}
-#if defined TIZEN_EXT
g_free(info->ifname);
g_free(info->ssid);
g_free(info);
-#endif /* defined TIZEN_EXT */
return;
}