From: Jouni Malinen Date: Tue, 27 Dec 2016 09:33:35 +0000 (+0200) Subject: hostapd: Check driver parameter before replacing previous value X-Git-Tag: hostap_2_7~1933 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8628555f9b50d409fca44593c00470888c4eb286;p=thirdparty%2Fhostap.git hostapd: Check driver parameter before replacing previous value This leaves the previously configured value in place if "SET driver ..." command fails. Signed-off-by: Jouni Malinen --- diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 32ae6883e..ada660132 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -2055,20 +2055,21 @@ static int hostapd_config_fill(struct hostapd_config *conf, os_strlcpy(bss->wds_bridge, pos, sizeof(bss->wds_bridge)); } else if (os_strcmp(buf, "driver") == 0) { int j; - /* clear to get error below if setting is invalid */ - conf->driver = NULL; + const struct wpa_driver_ops *driver = NULL; + for (j = 0; wpa_drivers[j]; j++) { if (os_strcmp(pos, wpa_drivers[j]->name) == 0) { - conf->driver = wpa_drivers[j]; + driver = wpa_drivers[j]; break; } } - if (conf->driver == NULL) { + if (!driver) { wpa_printf(MSG_ERROR, "Line %d: invalid/unknown driver '%s'", line, pos); return 1; } + conf->driver = driver; } else if (os_strcmp(buf, "driver_params") == 0) { os_free(conf->driver_params); conf->driver_params = os_strdup(pos);