From 4a3dbb926ae3f5410198d7cc4f4ebe4f62eebf05 Mon Sep 17 00:00:00 2001 From: marha Date: Sat, 25 Jul 2009 19:39:46 +0000 Subject: Added xorg-server-1.6.2.tar.gz --- xorg-server/hw/dmx/config/dmxparse.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'xorg-server/hw/dmx/config/dmxparse.c') diff --git a/xorg-server/hw/dmx/config/dmxparse.c b/xorg-server/hw/dmx/config/dmxparse.c index 0bf947051..28a1835af 100644 --- a/xorg-server/hw/dmx/config/dmxparse.c +++ b/xorg-server/hw/dmx/config/dmxparse.c @@ -65,12 +65,11 @@ void dmxConfigLog(const char *format, ...) void *dmxConfigAlloc(unsigned long bytes) { - void *area = malloc(bytes); + void *area = calloc(1, bytes); if (!area) { dmxConfigLog("dmxConfigAlloc: out of memory\n"); return NULL; } - memset(area, 0, bytes); return area; } @@ -249,8 +248,6 @@ DMXConfigDisplayPtr dmxConfigCreateDisplay(DMXConfigTokenPtr pStart, { DMXConfigDisplayPtr pDisplay = dmxConfigAlloc(sizeof(*pDisplay)); - memset(pDisplay, 0, sizeof(*pDisplay)); - pDisplay->start = pStart; pDisplay->dname = pName; pDisplay->dim = pDim; -- cgit v1.2.3