diff options
author | Rupesh Gujare <rgujare@ozmodevices.com> | 2012-04-25 23:54:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-26 12:40:53 -0700 |
commit | 89f21cc050d5eed8eeffee5b46297fb7a74ef9dd (patch) | |
tree | 8e8f3a0b45056704452a7d13784f3157e8dbc789 | |
parent | dc890df0a77cafe5f4a3d81c0dade637c27f1934 (diff) |
staging: ozwpan: Fix bug where kfree is called twice.staging-3.4-rc4
Signed-off-by: Rupesh Gujare <rgujare@ozmodevices.com>
Signed-off-by: Chris Kelly <ckelly@ozmodevices.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ozwpan/ozpd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/ozwpan/ozpd.c b/drivers/staging/ozwpan/ozpd.c index 2b45d3d1800c..04cd57f2a6da 100644 --- a/drivers/staging/ozwpan/ozpd.c +++ b/drivers/staging/ozwpan/ozpd.c @@ -383,8 +383,6 @@ static void oz_tx_frame_free(struct oz_pd *pd, struct oz_tx_frame *f) pd->tx_pool = &f->link; pd->tx_pool_count++; f = 0; - } else { - kfree(f); } spin_unlock_bh(&pd->tx_frame_lock); if (f) |