From 1c9015b2cb483678f153121255e10ec0bbfde3e6 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 10 Nov 2008 17:00:41 +0100 Subject: libiptc: remove indirections Signed-off-by: Jan Engelhardt Signed-off-by: Patrick McHardy --- ip6tables-standalone.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ip6tables-standalone.c') diff --git a/ip6tables-standalone.c b/ip6tables-standalone.c index 9a0b2b37..ba30f0e6 100644 --- a/ip6tables-standalone.c +++ b/ip6tables-standalone.c @@ -66,8 +66,10 @@ main(int argc, char *argv[]) #endif ret = do_command6(argc, argv, &table, &handle); - if (ret) - ret = ip6tc_commit(&handle); + if (ret) { + ret = ip6tc_commit(handle); + ip6tc_free(handle); + } if (!ret) fprintf(stderr, "ip6tables: %s\n", -- cgit v1.2.3