Browse Source

WPS: Use more defensive design to avoid theoretical NULL deref

Prior to commit 6195adda9b4306cda2b06b930c59c95832d026a9 the sm->user
dereference did not exist here. While this is in practice non-NULL,
better use more defensive construction here to avoid NULL pointer
dereference should this ever change.
Jouni Malinen 14 years ago
parent
commit
cce1f698e5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/eap_server/eap_server_wsc.c

+ 3 - 2
src/eap_server/eap_server_wsc.c

@@ -128,9 +128,10 @@ static void * eap_wsc_init(struct eap_sm *sm)
 			wpa_printf(MSG_DEBUG, "EAP-WSC: No AP PIN (password) "
 				   "configured for Enrollee functionality - "
 				   "allow for probing capabilities (M1)");
+		} else {
+			cfg.pin = sm->user->password;
+			cfg.pin_len = sm->user->password_len;
 		}
-		cfg.pin = sm->user->password;
-		cfg.pin_len = sm->user->password_len;
 	}
 	cfg.assoc_wps_ie = sm->assoc_wps_ie;
 	cfg.peer_addr = sm->peer_addr;