mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[PATCH] Fix typo in drivers/isdn/hisax/q931.c
This fixes coverity bug #517. Since IESIZE is greater than IESIZE_NI1 we might run past the end of ielist_ni1. This fixes it by using the proper IESIZE_NI1 define. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Acked-by: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
6aa65472d1
commit
9f13fae247
@ -1402,12 +1402,12 @@ dlogframe(struct IsdnCardState *cs, struct sk_buff *skb, int dir)
|
||||
}
|
||||
/* No, locate it in the table */
|
||||
if (cset == 0) {
|
||||
for (i = 0; i < IESIZE; i++)
|
||||
for (i = 0; i < IESIZE_NI1; i++)
|
||||
if (*buf == ielist_ni1[i].nr)
|
||||
break;
|
||||
|
||||
/* When not found, give appropriate msg */
|
||||
if (i != IESIZE) {
|
||||
if (i != IESIZE_NI1) {
|
||||
dp += sprintf(dp, " %s\n", ielist_ni1[i].descr);
|
||||
dp += ielist_ni1[i].f(dp, buf);
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user