dect
/
linux-2.6
Archived
13
0
Fork 0

[SLIP]: Remove redundant NULL pointer checks prior to kfree

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jesper Juhl 2005-04-24 18:59:30 -07:00 committed by David S. Miller
parent 18900829f3
commit 158a0e45b6
1 changed files with 12 additions and 18 deletions

View File

@ -185,15 +185,12 @@ sl_alloc_bufs(struct slip *sl, int mtu)
/* Cleanup */
err_exit:
#ifdef SL_INCLUDE_CSLIP
if (cbuff)
kfree(cbuff);
kfree(cbuff);
if (slcomp)
slhc_free(slcomp);
#endif
if (xbuff)
kfree(xbuff);
if (rbuff)
kfree(rbuff);
kfree(xbuff);
kfree(rbuff);
return err;
}
@ -204,13 +201,13 @@ sl_free_bufs(struct slip *sl)
void * tmp;
/* Free all SLIP frame buffers. */
if ((tmp = xchg(&sl->rbuff, NULL)) != NULL)
kfree(tmp);
if ((tmp = xchg(&sl->xbuff, NULL)) != NULL)
kfree(tmp);
tmp = xchg(&sl->rbuff, NULL);
kfree(tmp);
tmp = xchg(&sl->xbuff, NULL);
kfree(tmp);
#ifdef SL_INCLUDE_CSLIP
if ((tmp = xchg(&sl->cbuff, NULL)) != NULL)
kfree(tmp);
tmp = xchg(&sl->cbuff, NULL);
kfree(tmp);
if ((tmp = xchg(&sl->slcomp, NULL)) != NULL)
slhc_free(tmp);
#endif
@ -297,13 +294,10 @@ done_on_bh:
spin_unlock_bh(&sl->lock);
done:
if (xbuff)
kfree(xbuff);
if (rbuff)
kfree(rbuff);
kfree(xbuff);
kfree(rbuff);
#ifdef SL_INCLUDE_CSLIP
if (cbuff)
kfree(cbuff);
kfree(cbuff);
#endif
return err;
}