]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
NETFILTER: nfnetlink_log: fix reference counting
authorMichal Miroslaw <mirq-linux@rere.qmqm.pl>
Tue, 13 Mar 2007 15:45:26 +0000 (16:45 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 23 Mar 2007 19:49:22 +0000 (12:49 -0700)
[NETFILTER]: nfnetlink_log: fix reference counting

Fix reference counting (memory leak) problem in __nfulnl_send() and callers
related to packet queueing.

Signed-off-by: Michal Miroslaw <mirq-linux@rere.qmqm.pl>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/netfilter/nfnetlink_log.c

index 690b173bdee72fbbf0f1ea9f34d1559b5d01f372..f7eafd80474a4ed264d13f34728705c473a9fb61 100644 (file)
@@ -218,10 +218,8 @@ _instance_destroy2(struct nfulnl_instance *inst, int lock)
        spin_lock_bh(&inst->lock);
        if (inst->skb) {
                /* timer "holds" one reference (we have one more) */
-               if (timer_pending(&inst->timer)) {
-                       del_timer(&inst->timer);
+               if (del_timer(&inst->timer))
                        instance_put(inst);
-               }
                if (inst->qlen)
                        __nfulnl_send(inst);
                if (inst->skb) {
@@ -695,10 +693,8 @@ nfulnl_log_packet(unsigned int pf,
                UDEBUG("flushing old skb\n");
 
                /* timer "holds" one reference (we have another one) */
-               if (timer_pending(&inst->timer)) {
-                       del_timer(&inst->timer);
+               if (del_timer(&inst->timer))
                        instance_put(inst);
-               }
                __nfulnl_send(inst);
 
                if (!(inst->skb = nfulnl_alloc_skb(nlbufsiz, size))) {