522b9c6
diff -up xloadimage.4.1/new.c.fix-mem-leak xloadimage.4.1/new.c
522b9c6
--- xloadimage.4.1/new.c.fix-mem-leak	2013-01-02 13:21:24.082069878 -0500
522b9c6
+++ xloadimage.4.1/new.c	2013-01-02 13:22:04.427104519 -0500
522b9c6
@@ -181,7 +181,7 @@ Image *newTrueImage(width, height)
522b9c6
   image->depth= 24;
522b9c6
   image->pixlen= 3;
522b9c6
   image->data= (unsigned char *)lmalloc(ovmul(ovmul(width, height), 3));
522b9c6
-  image->data= (unsigned char *)lmalloc(width * height * 3);
522b9c6
+  /* image->data= (unsigned char *)lmalloc(width * height * 3); */
522b9c6
   return(image);
522b9c6
 }
522b9c6