]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Fix ESS_DISASSOC ctrl_iface command parser
authorJouni Malinen <j@w1.fi>
Sat, 25 May 2013 16:55:32 +0000 (19:55 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 25 May 2013 16:55:32 +0000 (19:55 +0300)
strchr can return NULL and that needs to be checked instead of what the
pointer could be pointing to.

Signed-hostap: Jouni Malinen <j@w1.fi>

hostapd/ctrl_iface.c

index dc9ede7385cc2ff12bdc955d8e7992b08122ef6b..021cbe5790583d6b72b01e0fa6de7851ee22c5e2 100644 (file)
@@ -556,7 +556,7 @@ static int hostapd_ctrl_iface_ess_disassoc(struct hostapd_data *hapd,
                return -1;
 
        url = os_strchr(timerstr, ' ');
-       if (*url != ' ')
+       if (url == NULL)
                return -1;
        url++;
        url_len = os_strlen(url);