aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/mISDN/l1oip_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/isdn/mISDN/l1oip_codec.c')
-rw-r--r--drivers/isdn/mISDN/l1oip_codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/mISDN/l1oip_codec.c b/drivers/isdn/mISDN/l1oip_codec.c
index 2ec4b28d9edc..e4ecba3d48df 100644
--- a/drivers/isdn/mISDN/l1oip_codec.c
+++ b/drivers/isdn/mISDN/l1oip_codec.c
@@ -331,7 +331,7 @@ l1oip_4bit_alloc(int ulaw)
331 /* alloc conversion tables */ 331 /* alloc conversion tables */
332 table_com = vmalloc(65536); 332 table_com = vmalloc(65536);
333 table_dec = vmalloc(512); 333 table_dec = vmalloc(512);
334 if (!table_com | !table_dec) { 334 if (!table_com || !table_dec) {
335 l1oip_4bit_free(); 335 l1oip_4bit_free();
336 return -ENOMEM; 336 return -ENOMEM;
337 } 337 }