From: Ryuji Date: Tue, 30 Jun 2009 16:39:13 +0000 (+0300) Subject: Fix EAP-TNC peer memory leak on an error path X-Git-Url: https://vcs.maemo.org/git/?p=wpasupplicant;a=commitdiff_plain;h=1c5a1aa51c37f3604bbef5c24b3e4209848f6886 Fix EAP-TNC peer memory leak on an error path --- diff --git a/src/eap_peer/tncc.c b/src/eap_peer/tncc.c index 662662d..eaaa168 100644 --- a/src/eap_peer/tncc.c +++ b/src/eap_peer/tncc.c @@ -1106,6 +1106,7 @@ static struct tnc_if_imc * tncc_parse_imc(char *start, char *end, int *error) if (pos >= end || *pos != ' ') { wpa_printf(MSG_ERROR, "TNC: Ignoring invalid IMC line '%s' " "(no space after name)", start); + os_free(imc->name); os_free(imc); return NULL; }