From: Masashi Honma Date: Fri, 18 Oct 2019 02:04:18 +0000 (+0900) Subject: Interworking: Check NULL string to avoid compiler warning X-Git-Tag: hostap_2_10~2256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6807eee9ca95cc02e735462de2d052fcc7d1148a;p=thirdparty%2Fhostap.git Interworking: Check NULL string to avoid compiler warning Fix warning by gcc 9.2.1. interworking.c: In function ‘interworking_home_sp_cred’: interworking.c:2263:3: warning: ‘%s’ directive argument is null [-Wformat-overflow=] 2263 | wpa_msg(wpa_s, MSG_DEBUG, | ^~~~~~~~~~~~~~~~~~~~~~~~~ 2264 | "Interworking: Search for match with SIM/USIM domain %s", | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2265 | realm); | ~~~~~~ Signed-off-by: Masashi Honma --- diff --git a/wpa_supplicant/interworking.c b/wpa_supplicant/interworking.c index 0261bb7b8..d8e9c95a7 100644 --- a/wpa_supplicant/interworking.c +++ b/wpa_supplicant/interworking.c @@ -2262,7 +2262,7 @@ int interworking_home_sp_cred(struct wpa_supplicant *wpa_s, realm++; wpa_msg(wpa_s, MSG_DEBUG, "Interworking: Search for match with SIM/USIM domain %s", - realm); + realm ? realm : "[NULL]"); if (realm && domain_name_list_contains(domain_names, realm, 1)) return 1;