summaryrefslogtreecommitdiff
path: root/drivers/isdn/hardware/eicon/debug.c
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-10-04 09:24:59 (GMT)
committerDavid S. Miller <davem@davemloft.net>2010-10-07 06:30:39 (GMT)
commitc2dddf941409635601e56c1990c5ab0bd395742c (patch)
tree77df90b752ee44ddc82ed1a31f310e152a307b4d /drivers/isdn/hardware/eicon/debug.c
parent1f4f0f645cc1d7f1187fcdb0ac22c2e69bd68050 (diff)
downloadlinux-c2dddf941409635601e56c1990c5ab0bd395742c.tar.xz
eicon: make buffer larger
In diva_mnt_add_xdi_adapter() we do this: strcpy (clients[id].drvName, tmp); strcpy (clients[id].Dbg.drvName, tmp); The "clients[id].drvName" is a 128 character buffer and "clients[id].Dbg.drvName" was originally a 16 character buffer but I've changed it to 128 as well. We don't actually use 128 characters but we do use more than 16. I've also changed the size of "tmp" to 128 characters instead of 256. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/hardware/eicon/debug.c')
-rw-r--r--drivers/isdn/hardware/eicon/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hardware/eicon/debug.c b/drivers/isdn/hardware/eicon/debug.c
index 33ce89e..3626401 100644
--- a/drivers/isdn/hardware/eicon/debug.c
+++ b/drivers/isdn/hardware/eicon/debug.c
@@ -862,7 +862,7 @@ void diva_mnt_add_xdi_adapter (const DESCRIPTOR* d) {
diva_os_spin_lock_magic_t old_irql, old_irql1;
dword sec, usec, logical, serial, org_mask;
int id, best_id = 0, free_id = -1;
- char tmp[256];
+ char tmp[128];
diva_dbg_entry_head_t* pmsg = NULL;
int len;
word size;