aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/isdn')
-rw-r--r--drivers/isdn/mISDN/l1oip_codec.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/isdn/mISDN/l1oip_codec.c b/drivers/isdn/mISDN/l1oip_codec.c
index a601c8472220..9b033be11a5f 100644
--- a/drivers/isdn/mISDN/l1oip_codec.c
+++ b/drivers/isdn/mISDN/l1oip_codec.c
@@ -312,10 +312,8 @@ l1oip_ulaw_to_alaw(u8 *data, int len, u8 *result)
312void 312void
313l1oip_4bit_free(void) 313l1oip_4bit_free(void)
314{ 314{
315 if (table_dec) 315 vfree(table_dec);
316 vfree(table_dec); 316 vfree(table_com);
317 if (table_com)
318 vfree(table_com);
319 table_com = NULL; 317 table_com = NULL;
320 table_dec = NULL; 318 table_dec = NULL;
321} 319}