]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Interworking: Check NULL string to avoid compiler warning
authorMasashi Honma <masashi.honma@gmail.com>
Fri, 18 Oct 2019 02:04:18 +0000 (11:04 +0900)
committerJouni Malinen <j@w1.fi>
Fri, 25 Oct 2019 13:03:37 +0000 (16:03 +0300)
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 <masashi.honma@gmail.com>
wpa_supplicant/interworking.c

index 0261bb7b8fd761b27d67c84d2bd6cd76cc4cddb7..d8e9c95a739d0af9070e3965aac65fb9457662f7 100644 (file)
@@ -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;