[gs-commits] rev 11754 - trunk/gs/base
robin at ghostscript.com
robin at ghostscript.com
Tue Oct 5 12:10:47 UTC 2010
Author: robin
Date: 2010-10-05 12:10:46 +0000 (Tue, 05 Oct 2010)
New Revision: 11754
Modified:
trunk/gs/base/gsiodisk.c
Log:
Fix for part 1 of Bug 691635, supplied by Norbert Janssen. Many thanks.
In the recent work to remove global variables where possible, I had failed to
change an instance of iodev_default to be iodev_default(mem).
No expected changes.
Modified: trunk/gs/base/gsiodisk.c
===================================================================
--- trunk/gs/base/gsiodisk.c 2010-10-04 14:53:43 UTC (rev 11753)
+++ trunk/gs/base/gsiodisk.c 2010-10-05 12:10:46 UTC (rev 11754)
@@ -217,7 +217,7 @@
return_error(gs_error_undefinedfilename);
}
- return iodev_os_fopen(iodev_default, realname, access, pfile, rfname, rnamelen);
+ return iodev_os_fopen(iodev_default(pstate->memory), realname, access, pfile, rfname, rnamelen);
}
static int
More information about the gs-commits
mailing list