From: regit <regit@xxxxxxxxxxxxxx> 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 <regit@xxxxxxxxxxxxxx> --- input/flow/ulogd_inpflow_NFCT.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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); -- 1.5.5.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html