Parcourir la source

bgscan: Remove unnecessary NULL check

bgscan_init() is the only caller for the init() function and the
parameters argument is never NULL.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 8 ans
Parent
commit
9d6eaad6b8
2 fichiers modifiés avec 0 ajouts et 6 suppressions
  1. 0 3
      wpa_supplicant/bgscan_learn.c
  2. 0 3
      wpa_supplicant/bgscan_simple.c

+ 0 - 3
wpa_supplicant/bgscan_learn.c

@@ -320,9 +320,6 @@ static int bgscan_learn_get_params(struct bgscan_learn_data *data,
 {
 	const char *pos;
 
-	if (params == NULL)
-		return 0;
-
 	data->short_interval = atoi(params);
 
 	pos = os_strchr(params, ':');

+ 0 - 3
wpa_supplicant/bgscan_simple.c

@@ -80,9 +80,6 @@ static int bgscan_simple_get_params(struct bgscan_simple_data *data,
 {
 	const char *pos;
 
-	if (params == NULL)
-		return 0;
-
 	data->short_interval = atoi(params);
 
 	pos = os_strchr(params, ':');