summaryrefslogtreecommitdiffstats
path: root/utils/expect_get.c
diff options
context:
space:
mode:
authorAndrew Beverley <andy@andybev.com>2011-04-16 21:08:26 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2011-05-14 10:51:13 +0200
commitaf0ed4892ba998e958e6da52cbdcf900fdd391e9 (patch)
tree064e2cd531e2d3003d75ababdf064325d1810887 /utils/expect_get.c
parentd2089340ee2f146617ec9cfbf56c29953f79c428 (diff)
utils: add nfct_destroy() to all examples in utils
This patch adds nfct_destroy() to all the examples in the utils folder. Although this may be obvious to some, when I wrote my first code using libnetfilter_conntract, I used the examples but subsequently missed out all the calls to nfct_destroy(). Signed-off-by: Andrew Beverley <andy@andybev.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'utils/expect_get.c')
-rw-r--r--utils/expect_get.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/expect_get.c b/utils/expect_get.c
index fc7e116..e42c845 100644
--- a/utils/expect_get.c
+++ b/utils/expect_get.c
@@ -42,6 +42,7 @@ int main(void)
exp = nfexp_new();
if (!exp) {
perror("nfexp_new");
+ nfct_destroy(master);
exit(EXIT_FAILURE);
}
@@ -50,6 +51,7 @@ int main(void)
h = nfct_open(EXPECT, 0);
if (!h) {
perror("nfct_open");
+ nfct_destroy(master);
return -1;
}
@@ -64,5 +66,7 @@ int main(void)
nfct_close(h);
+ nfct_destroy(master);
+
ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
}