From: Jaehyun Kim Date: Wed, 11 Nov 2020 11:30:56 +0000 (+0000) Subject: Merge "Fix derefrencing of NULL pointer" into tizen X-Git-Tag: submit/tizen/20201116.030352^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33cdd54e34fcea201488aed301a31a204520b287;hp=0a6425147f6e3bd165c8302bdc3205fb958fd065;p=platform%2Fupstream%2Fconnman.git Merge "Fix derefrencing of NULL pointer" into tizen --- diff --git a/plugins/ethernet.c b/plugins/ethernet.c index 2a91e2f..b0031cb 100644 --- a/plugins/ethernet.c +++ b/plugins/ethernet.c @@ -221,7 +221,7 @@ static int eth_network_connect(struct connman_network *network) g_supplicant_register_eap_callback(handle_eap_signal); g_network = network; - if (asprintf(&config_file, "/opt/usr/data/network/%s-eapol.conf", ifname) < 0) { + if (asprintf(&config_file, "/var/lib/connman/%s-eapol.conf", ifname) < 0) { g_free(ifname); return -ENOMEM; }