[jbig2-cvs] rev 287 - trunk

giles at ghostscript.com giles at ghostscript.com
Tue Nov 11 05:50:59 PST 2003


Author: giles
Date: 2003-11-10 09:02:21 -0800 (Mon, 10 Nov 2003)
New Revision: 287

Modified:
   trunk/jbig2_image.c
Log:
Correct arguments to jbig2_image_free().


Modified: trunk/jbig2_image.c
===================================================================
--- trunk/jbig2_image.c	2003-11-09 13:59:03 UTC (rev 286)
+++ trunk/jbig2_image.c	2003-11-10 17:02:21 UTC (rev 287)
@@ -71,7 +71,7 @@
 void jbig2_image_release(Jbig2Ctx *ctx, Jbig2Image *image)
 {
 	image->refcount--;
-	if (!image->refcount) jbig2_image_free(image);
+	if (!image->refcount) jbig2_image_free(ctx, image);
 }
 
 /* free a Jbig2Image structure and its associated memory */



More information about the jbig2-cvs mailing list