Remove unnecessary parameter validation
authorJouni Malinen <j@w1.fi>
Sat, 22 Mar 2014 14:24:57 +0000 (16:24 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 22 Mar 2014 14:25:28 +0000 (16:25 +0200)
This is dead code since this helper function is always called with
non-NULL pointer.

Signed-off-by: Jouni Malinen <j@w1.fi>
src/ap/ctrl_iface_ap.c

index 11351c4..e1020a6 100644 (file)
@@ -469,9 +469,6 @@ int hostapd_parse_csa_settings(const char *pos,
 {
        char *end;
 
-       if (!settings)
-               return -1;
-
        os_memset(settings, 0, sizeof(*settings));
        settings->cs_count = strtol(pos, &end, 10);
        if (pos == end) {