Fix MEMORY SMASH in XkbCopyKeymap.

XkbCopyKeymap reallocates the destination keymap when it is not large enough
to hold the source data. When reallocating the map->types data, it needs to
zero out the new entries. The computation for where to start bzero'ing was
accounting for the size of the data type twice, once implicitly in the
pointer arithmetic, and once explicitly with '* sizeof (XkbKeyTypeRec)'.
This would often lead to random memory corruption when the destination
keymap had existing map->types data.
This commit is contained in:
Keith Packard 2007-07-04 23:38:27 -07:00
parent 9131d560a0
commit 9ff7ff2fda

View File

@ -1003,9 +1003,8 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool sendNotifies)
if (!tmp)
return FALSE;
dst->map->types = tmp;
bzero(dst->map->types +
(dst->map->num_types * sizeof(XkbKeyTypeRec)),
(src->map->num_types - dst->map->size_types) *
bzero(dst->map->types + dst->map->num_types,
(src->map->num_types - dst->map->num_types) *
sizeof(XkbKeyTypeRec));
}
else {