diff options
| author | Rupesh Gujare <rgujare@ozmodevices.com> | 2012-04-25 18:54:58 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-26 15:40:53 -0400 |
| commit | 89f21cc050d5eed8eeffee5b46297fb7a74ef9dd (patch) | |
| tree | 8e8f3a0b45056704452a7d13784f3157e8dbc789 | |
| parent | dc890df0a77cafe5f4a3d81c0dade637c27f1934 (diff) | |
staging: ozwpan: Fix bug where kfree is called twice.
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) | |||
| 383 | pd->tx_pool = &f->link; | 383 | pd->tx_pool = &f->link; |
| 384 | pd->tx_pool_count++; | 384 | pd->tx_pool_count++; |
| 385 | f = 0; | 385 | f = 0; |
| 386 | } else { | ||
| 387 | kfree(f); | ||
| 388 | } | 386 | } |
| 389 | spin_unlock_bh(&pd->tx_frame_lock); | 387 | spin_unlock_bh(&pd->tx_frame_lock); |
| 390 | if (f) | 388 | if (f) |
