Coverity #324: Fix potential NULL dereference. (Alan Coopersmith)

This commit is contained in:
Daniel Stone 2006-04-09 17:28:42 +00:00
parent 7637aa17f2
commit f324be00c5
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,9 @@
* xkb/ddxList.c:
Coverity #169: Fix potential fgets() into NULL (?!?).
* xkb/XKBMAlloc.c:
Coverity #324: Fix potential NULL dereference. (Alan Coopersmith)
2006-04-07 Aaron Plattner <aplattner@nvidia.com>
* hw/xfree86/common/xf86Module.h:

View File

@ -305,6 +305,7 @@ XkbClientMapPtr map;
tmp= XkbNumRequiredTypes+1;
if (XkbAllocClientMap(xkb,XkbKeyTypesMask,tmp)!=Success)
return NULL;
map = xkb->map;
tmp= 0;
if (map->num_types<=XkbKeypadIndex)
tmp|= XkbKeypadMask;