aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/xfixes/region.c
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2019-02-28 23:11:23 +0100
committerUlrich Sibiller <uli42@gmx.de>2019-02-28 23:11:23 +0100
commitc81a45785970aa198736d8dc578beb2d7bbd1b2f (patch)
treeac76fbaa64eb26f0a1cf7863a7eca6bff9ceb9a6 /nx-X11/programs/Xserver/xfixes/region.c
parenta70e36c8114c0358258e8c3964b9d897884e265e (diff)
downloadnx-libs-c81a45785970aa198736d8dc578beb2d7bbd1b2f.tar.gz
nx-libs-c81a45785970aa198736d8dc578beb2d7bbd1b2f.tar.bz2
nx-libs-c81a45785970aa198736d8dc578beb2d7bbd1b2f.zip
Use calloc to zero fill buffers being allocated for replies & events
commit cdf5bcd420e5bcf4a4a24a275d3133a4e16ce41e Author: Alan Coopersmith <alan.coopersmith@oracle.com> Date: Mon Jul 9 19:12:42 2012 -0700 Use calloc to zero fill buffers being allocated for replies & events Ensures padding bytes are zero-filled Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Keith Packard <keithp@keithp.com> Tested-by: Daniel Stone <daniel@fooishbar.org> Attributes ArcticaProject/nx-libs#382
Diffstat (limited to 'nx-X11/programs/Xserver/xfixes/region.c')
-rw-r--r--nx-X11/programs/Xserver/xfixes/region.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/xfixes/region.c b/nx-X11/programs/Xserver/xfixes/region.c
index ba8c62835..849df6869 100644
--- a/nx-X11/programs/Xserver/xfixes/region.c
+++ b/nx-X11/programs/Xserver/xfixes/region.c
@@ -570,8 +570,8 @@ ProcXFixesFetchRegion (ClientPtr client)
pBox = RegionRects (pRegion);
nBox = RegionNumRects (pRegion);
- reply = malloc (sizeof (xXFixesFetchRegionReply) +
- nBox * sizeof (xRectangle));
+ reply = calloc (sizeof (xXFixesFetchRegionReply) +
+ nBox * sizeof (xRectangle), 1);
if (!reply)
return BadAlloc;
reply->type = X_Reply;