From 6396a180f3f15e7417a81b44c61184828268b341 Mon Sep 17 00:00:00 2001 From: regit Date: Wed, 4 Jun 2008 15:19:05 +0200 Subject: Fix crash when using NFCT with hash_enable=0. This patch fixes NFCT when hash_enable is 0. Limitation of treatment to NFCT_DESTROY message type causes usage of the hashtable function and hence a crash because it is not initiated. Signed-off-by: regit Signed-off-by: Patrick McHardy --- input/flow/ulogd_inpflow_NFCT.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/flow/ulogd_inpflow_NFCT.c b/input/flow/ulogd_inpflow_NFCT.c index dfb58d5..2a44780 100644 --- a/input/flow/ulogd_inpflow_NFCT.c +++ b/input/flow/ulogd_inpflow_NFCT.c @@ -625,7 +625,7 @@ static int event_handler(enum nf_conntrack_msg_type type, .ct = ct, }; - if (!usehash_ce(upi->config_kset).u.value && type == NFCT_T_DESTROY) { + if (!usehash_ce(upi->config_kset).u.value) { switch(type) { case NFCT_T_NEW: gettimeofday(&tmp.time[START], NULL); -- cgit v1.2.3