Parcourir la source

TNC: Fix minor memory leak (CID 62848)

In tncc_read_config(), the memory allocted for the config
did not get freed if an error occured.

Signed-off-by: Philippe De Swert <philippe.deswert@jollamobile.com>
Philippe De Swert il y a 11 ans
Parent
commit
68e2b8882a
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      src/eap_peer/tncc.c

+ 3 - 1
src/eap_peer/tncc.c

@@ -1092,8 +1092,10 @@ static int tncc_read_config(struct tncc_data *tncc)
 			int error = 0;
 
 			imc = tncc_parse_imc(pos + 4, line_end, &error);
-			if (error)
+			if (error) {
+				os_free(config);
 				return -1;
+			}
 			if (imc) {
 				if (last == NULL)
 					tncc->imc = imc;