summaryrefslogtreecommitdiff
path: root/pcl
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2022-09-20 10:59:30 +0100
committerRobin Watts <Robin.Watts@artifex.com>2022-09-20 10:59:30 +0100
commite46d6fc164cd3f4455048c0d9241d7c760f1f93e (patch)
tree8ca6e4aec2e07b44cf774231025f0418dd4f936c /pcl
parent937aa20fb32438587b6cc26bd97b8a10ebbba266 (diff)
downloadghostpdl-e46d6fc164cd3f4455048c0d9241d7c760f1f93e.tar.gz
Correct PCL passthrough SEGVs.
In commit 90fa745b7 (Add gpdl support for SmartOffice integration), I tweaked the way we found the PCL interpreter, so that instead of relying on it being at a fixed point in the list of interpreters, we hunted for it by name. And then I used the wrong name. Use the right name instead. I am at a loss to understand why the normal cluster tests didn't pick this up.
Diffstat (limited to 'pcl')
-rw-r--r--pcl/pl/plmain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcl/pl/plmain.c b/pcl/pl/plmain.c
index 04f330909..d6fb95f20 100644
--- a/pcl/pl/plmain.c
+++ b/pcl/pl/plmain.c
@@ -3121,7 +3121,7 @@ pl_interp_implementation_t *pl_main_get_pdf_instance(const gs_memory_t *mem)
pl_interp_implementation_t *
pl_main_get_pcl_instance(const gs_memory_t *mem)
{
- return pl_main_get_language_instance(mem, "PCLXL");
+ return pl_main_get_language_instance(mem, "PCL");
}
pl_interp_implementation_t *