Parcourir la source

Remove unnecessary parameter validation

This is dead code since this helper function is always called with
non-NULL pointer.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 11 ans
Parent
commit
1d4fe3bcbc
1 fichiers modifiés avec 0 ajouts et 3 suppressions
  1. 0 3
      src/ap/ctrl_iface_ap.c

+ 0 - 3
src/ap/ctrl_iface_ap.c

@@ -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) {