>From 5239e8e9aa79a131b716398efbf7a1203decbd9b Mon Sep 17 00:00:00 2001 From: Ola Olsson <ola.olsson@xxxxxxxxxxxxxx> Date: Thu, 1 Oct 2015 00:43:06 +0200 Subject: [PATCH] iw: Memory leak in error condition Signed-off-by: Ola Olsson <ola.olsson@xxxxxxxxxxxxxx> --- scan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scan.c b/scan.c index e959c1b..f248981 100644 --- a/scan.c +++ b/scan.c @@ -446,6 +446,8 @@ static int handle_scan(struct nl80211_state *state, if (ies || meshid) { tmpies = (unsigned char *) malloc(ies_len + meshid_len); if (!tmpies) + free(ies); + free(meshid); goto nla_put_failure; if (ies) { memcpy(tmpies, ies, ies_len); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html