diff options
author | Kim Woelders <kim@woelders.dk> | 2009-09-29 20:31:45 +0200 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-09-30 10:21:29 +1000 |
commit | 4970666827e65424ee17ccf6341ff84aac974383 (patch) | |
tree | c840712278108818264ffbce5f7c2f4f171d720a /dix | |
parent | 6ffda5aae75272fabdc27d6f693ae827be119e95 (diff) |
dix: Fix potential memory corruption in doListFontsWithInfo.
Signed-off-by: Kim Woelders <kim@woelders.dk>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'dix')
-rw-r--r-- | dix/dixfonts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/dixfonts.c b/dix/dixfonts.c index d0a46c744..329318d5d 100644 --- a/dix/dixfonts.c +++ b/dix/dixfonts.c @@ -1046,7 +1046,7 @@ doListFontsWithInfo(ClientPtr client, LFWIclosurePtr c) err = AllocError; break; } - memset(reply + c->length, 0, length - c->length); + memset((char*)reply + c->length, 0, length - c->length); c->reply = reply; c->length = length; } |