From 1c6935e49dcc7c88fe26d23ceda6ed4ca3c8a9bc Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Thu, 22 Dec 2022 11:47:55 +0100 Subject: nmtui: fix memory leak Fixes: 3bda3fb60c10 ('nmtui: initial import of nmtui') --- src/nmtui/nmt-device-entry.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nmtui/nmt-device-entry.c b/src/nmtui/nmt-device-entry.c index 7f312bd1fc..99cc43add3 100644 --- a/src/nmtui/nmt-device-entry.c +++ b/src/nmtui/nmt-device-entry.c @@ -132,12 +132,14 @@ device_entry_parse(NmtDeviceEntry *deventry, && (!words[1] || nm_utils_ifname_valid_kernel(words[1], NULL))) { *mac_address = words[0]; *interface_name = NULL; + g_free(words[1]); g_free(words); return TRUE; } else if (nm_utils_ifname_valid_kernel(words[0], NULL) && (!words[1] || nm_utils_hwaddr_aton(words[1], buf, len))) { *interface_name = words[0]; *mac_address = NULL; + g_free(words[1]); g_free(words); return TRUE; } -- cgit v1.2.1