[gs-commits] rev 10968 - branches/icc_work/base
mvrhel at ghostscript.com
mvrhel at ghostscript.com
Wed Mar 24 21:36:21 UTC 2010
Author: mvrhel
Date: 2010-03-24 21:36:20 +0000 (Wed, 24 Mar 2010)
New Revision: 10968
Modified:
branches/icc_work/base/gsciemap.c
Log:
Fix for accidental local variable declaration. Was causing error in Bug688584.ps
Modified: branches/icc_work/base/gsciemap.c
===================================================================
--- branches/icc_work/base/gsciemap.c 2010-03-24 18:31:06 UTC (rev 10967)
+++ branches/icc_work/base/gsciemap.c 2010-03-24 21:36:20 UTC (rev 10968)
@@ -578,7 +578,7 @@
if (pcs->icc_equivalent == NULL) {
gx_cieabc_to_icc(&pcs_icc, pcs, pis->memory->stable_memory);
} else {
- gs_color_space *pcs_icc = pcs->icc_equivalent;
+ pcs_icc = pcs->icc_equivalent;
}
/* Rescale the input based upon the input range since profile is
created to remap this range from 0 to 1 */
More information about the gs-commits
mailing list