Parcourir la source

WPS: Fix configuration strings on config reload

Previously, freed memory could be used as device name (and other similar
parameters) when building WPS IE after SIGHUP.
Jouni Malinen il y a 14 ans
Parent
commit
dcf788d1a4
1 fichiers modifiés avec 9 ajouts et 0 suppressions
  1. 9 0
      wpa_supplicant/wps_supplicant.c

+ 9 - 0
wpa_supplicant/wps_supplicant.c

@@ -1386,4 +1386,13 @@ void wpas_wps_update_config(struct wpa_supplicant *wpa_s)
 		} else
 			os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
 	}
+
+	if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME) {
+		/* Update pointers to make sure they refer current values */
+		wps->dev.device_name = wpa_s->conf->device_name;
+		wps->dev.manufacturer = wpa_s->conf->manufacturer;
+		wps->dev.model_name = wpa_s->conf->model_name;
+		wps->dev.model_number = wpa_s->conf->model_number;
+		wps->dev.serial_number = wpa_s->conf->serial_number;
+	}
 }