[gs-cvs] rev 8193 - trunk/gs/src

alexcher at ghostscript.com alexcher at ghostscript.com
Fri Aug 17 06:02:19 PDT 2007


Author: alexcher
Date: 2007-08-17 06:02:19 -0700 (Fri, 17 Aug 2007)
New Revision: 8193

Modified:
   trunk/gs/src/gdevpdfv.c
Log:
Add missing initialization of txy_fixed_valid field. Since the fixed
coordinates are valid, the patch eliminates possible re-calculation of the
fixed coordinates but doesn't affect the end result. Bug 688914.

DIFFERENCES:
None


Modified: trunk/gs/src/gdevpdfv.c
===================================================================
--- trunk/gs/src/gdevpdfv.c	2007-08-17 04:49:22 UTC (rev 8192)
+++ trunk/gs/src/gdevpdfv.c	2007-08-17 13:02:19 UTC (rev 8193)
@@ -776,6 +776,7 @@
 	bits_per_flag = 8;
 	gs_make_identity((gs_matrix *)&ctm_ident);
 	ctm_ident.tx_fixed = ctm_ident.ty_fixed = 0;
+        ctm_ident.txy_fixed_valid = true;
 	cs.pctm = &ctm_ident;
 	if (pmp->Function)
 	    data_params.ranges = 0; /* don't scale function parameter */



More information about the gs-cvs mailing list