summaryrefslogtreecommitdiff
path: root/mi/mipushpxl.c
diff options
context:
space:
mode:
Diffstat (limited to 'mi/mipushpxl.c')
-rw-r--r--mi/mipushpxl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mi/mipushpxl.c b/mi/mipushpxl.c
index 3844519d8..9f0429867 100644
--- a/mi/mipushpxl.c
+++ b/mi/mipushpxl.c
@@ -123,7 +123,7 @@ miPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr pDrawable,
LONG2CHARSDIFFORDER((MiBits)(-1) >> 1);
#endif
- pwLineStart = xalloc(BitmapBytePad(dx));
+ pwLineStart = malloc(BitmapBytePad(dx));
if (!pwLineStart)
return;
ipt = 0;
@@ -262,7 +262,7 @@ miPushPixels(GCPtr pGC, PixmapPtr pBitMap, DrawablePtr pDrawable,
}
}
}
- xfree(pwLineStart);
+ free(pwLineStart);
/* Flush any remaining spans */
if (ipt)
{