[gs-cvs] rev 7768 - trunk/gs/src
leonardo at ghostscript.com
leonardo at ghostscript.com
Tue Mar 6 09:24:58 PST 2007
Author: leonardo
Date: 2007-03-06 09:24:58 -0800 (Tue, 06 Mar 2007)
New Revision: 7768
Modified:
trunk/gs/src/gxttfb.c
Log:
Fix (TT interpreter) : memory leaks with PCL (continued).
DETAILS :
The last patch doesn't compile with gcc due to a redundsnt typedef.
EXPECTED DIFFERENCES :
None.
Modified: trunk/gs/src/gxttfb.c
===================================================================
--- trunk/gs/src/gxttfb.c 2007-03-06 14:35:00 UTC (rev 7767)
+++ trunk/gs/src/gxttfb.c 2007-03-06 17:24:58 UTC (rev 7768)
@@ -291,10 +291,10 @@
/*----------------------------------------------*/
-typedef struct gx_ttfMemory_s {
+struct gx_ttfMemory_s {
ttfMemory super;
gs_memory_t *memory;
-} gx_ttfMemory;
+};
gs_private_st_simple(st_gx_ttfMemory, gx_ttfMemory, "gx_ttfMemory");
/* st_gx_ttfMemory::memory points to a root. */
More information about the gs-cvs
mailing list