Parcourir la source

Fix potential double free and use of freed memory in RADIUS client

ieee802_1x_encapsulate_radius() frees the RADIUS message if
radius_client_send() returns error. This could have resulted in use of
freed memory and double freeing of the RADIUS message if send() fails
since the message is also left in the retransmit list. Avoid this by not
returning error to the caller in such a case.

Signed-off-by: Alexander Couzens <lynxis@c-base.org>
Alexander Couzens il y a 13 ans
Parent
commit
a4e73a0e47
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/radius/radius_client.c

+ 1 - 1
src/radius/radius_client.c

@@ -678,7 +678,7 @@ int radius_client_send(struct radius_client_data *radius,
 	radius_client_list_add(radius, msg, msg_type, shared_secret,
 			       shared_secret_len, addr);
 
-	return res;
+	return 0;
 }