Parcourir la source

hostapd: Remove redundant variable initialization

The 'errors' variable is initialized later anyway.

Signed-hostap: Baruch Siach <baruch@tkos.co.il>
Baruch Siach il y a 12 ans
Parent
commit
4929898dab
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      hostapd/config_file.c

+ 1 - 1
hostapd/config_file.c

@@ -2475,7 +2475,7 @@ struct hostapd_config * hostapd_config_read(const char *fname)
 int hostapd_set_iface(struct hostapd_config *conf,
 		      struct hostapd_bss_config *bss, char *field, char *value)
 {
-	int errors = 0;
+	int errors;
 	size_t i;
 
 	errors = hostapd_config_fill(conf, bss, field, value, 0);