e82e7c83f6
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/netpbm#e8ffa0347758e32b9e9c4c788e808f5cd727ed46
20 lines
873 B
Diff
20 lines
873 B
Diff
diff --git a/converter/other/pstopnm.c b/converter/other/pstopnm.c
|
|
index f534265..2ab48ab 100644
|
|
--- a/converter/other/pstopnm.c
|
|
+++ b/converter/other/pstopnm.c
|
|
@@ -896,11 +896,11 @@ execGhostscript(int const inputPipeFd,
|
|
ghostscriptProg, arg0,
|
|
deviceopt, outfileopt, gopt, ropt, textalphabitsopt,
|
|
"-q", "-dNOPAUSE",
|
|
- "-dSAFER", "-");
|
|
+ "-dPARANOIDSAFER", "-");
|
|
}
|
|
|
|
- execl(ghostscriptProg, arg0, deviceopt, outfileopt, gopt, ropt,
|
|
- textalphabitsopt, "-q", "-dNOPAUSE", "-dSAFER", "-", NULL);
|
|
+ execl(ghostscriptProg, arg0, deviceopt, outfileopt, gopt, ropt, "-q",
|
|
+ "-dNOPAUSE", "-dPARANOIDSAFER", "-", NULL);
|
|
|
|
pm_error("execl() of Ghostscript ('%s') failed, errno=%d (%s)",
|
|
ghostscriptProg, errno, strerror(errno));
|