| Submitter | Pablo Neira |
|---|---|
| Date | March 7, 2013, 11 a.m. |
| Message ID | <1362654002-4405-3-git-send-email-pablo@netfilter.org> |
| Download | mbox | patch |
| Permalink | /patch/225810/ |
| State | Accepted |
| Headers | show |
Comments
Patch
diff --git a/net/netfilter/xt_AUDIT.c b/net/netfilter/xt_AUDIT.c index ba92824..3228d7f 100644 --- a/net/netfilter/xt_AUDIT.c +++ b/net/netfilter/xt_AUDIT.c @@ -124,6 +124,9 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par) const struct xt_audit_info *info = par->targinfo; struct audit_buffer *ab; + if (audit_enabled == 0) + goto errout; + ab = audit_log_start(NULL, GFP_ATOMIC, AUDIT_NETFILTER_PKT); if (ab == NULL) goto errout;