20 lines
531 B
Plaintext
20 lines
531 B
Plaintext
$OpenBSD: patch-source_tools_pdfextract_c,v 1.1 2016/01/19 05:20:51 semarie Exp $
|
|
|
|
add pledge(2) to "mutool extract"
|
|
|
|
--- source/tools/pdfextract.c.orig Sun Jan 17 12:12:27 2016
|
|
+++ source/tools/pdfextract.c Sun Jan 17 12:13:42 2016
|
|
@@ -202,6 +202,12 @@ int pdfextract_main(int argc, char **argv)
|
|
|
|
infile = argv[fz_optind++];
|
|
|
|
+ if (pledge("stdio rpath wpath cpath", NULL) == -1)
|
|
+ {
|
|
+ fprintf(stderr, "pledge: %s\n", strerror(errno));
|
|
+ exit(1);
|
|
+ }
|
|
+
|
|
ctx = fz_new_context(NULL, NULL, FZ_STORE_UNLIMITED);
|
|
if (!ctx)
|
|
{
|