From 26dbdca524427fa4b1bbdecdc9d0e9351cdc830b Mon Sep 17 00:00:00 2001 From: Rahul Jain Date: Tue, 11 Aug 2020 17:34:12 +0530 Subject: Svace Fix: memory leak Change-Id: Id10ede540b99d028f6ff40225b4dfcccb46d7fe0 --- src/iptables.c | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/iptables.c b/src/iptables.c index 6b7f7efc..beb14df7 100755 --- a/src/iptables.c +++ b/src/iptables.c @@ -1573,14 +1573,25 @@ static GList *find_existing_rule(struct connman_iptables *table, switch (entry_test->type) { case AF_INET: - if (!entry_test->entry) + if (!entry_test->entry) { +#if defined TIZEN_EXT + iptables_entry_free(entry_test); +#endif return NULL; + } break; case AF_INET6: - if (!entry_test->entry6) + if (!entry_test->entry6) { +#if defined TIZEN_EXT + iptables_entry_free(entry_test); +#endif return NULL; + } break; default: +#if defined TIZEN_EXT + iptables_entry_free(entry_test); +#endif return NULL; } @@ -2458,8 +2469,13 @@ static struct connman_iptables *iptables_init(int type, const char *table_name) DBG("%d %s", type, table_name); - if (setup_xtables(type)) + if (setup_xtables(type)) { +#if defined TIZEN_EXT + g_free(iptables_mod); + g_free(module); +#endif return NULL; + } if (xtables_insmod(iptables_mod, NULL, TRUE) != 0) DBG("%s module loading gives error but trying anyway", -- cgit v1.2.3