summaryrefslogtreecommitdiffstats
path: root/recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch')
-rw-r--r--recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch b/recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch
new file mode 100644
index 0000000..43404fa
--- /dev/null
+++ b/recipes-extended/groff/groff-1.18.1.4/0001-Make-it-build-with-compile-time-hardening-enabled.patch
@@ -0,0 +1,35 @@
1From a1cd31daf05023a14d8e904a409cecbfc0fae93e Mon Sep 17 00:00:00 2001
2From: Peter Kjellerstedt <pkj@axis.com>
3Date: Mon, 2 Oct 2017 14:34:14 +0200
4Subject: [PATCH 1/2] Make it build with compile time hardening enabled
5
6This avoids the following error:
7
8 src/devices/grohtml/post-html.cc: In member function 'void
9 header_desc::write_headings(FILE*, int)':
10 src/devices/grohtml/post-html.cc:1402:32: error: format not a string
11 literal and no format arguments [-Werror=format-security]
12 fprintf(f, buffer.contents());
13
14Upstream-Status: Inappropriate [legacy version]
15Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
16---
17 src/devices/grohtml/post-html.cc | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/src/devices/grohtml/post-html.cc b/src/devices/grohtml/post-html.cc
21index 3c09d7c..1ad5580 100644
22--- a/src/devices/grohtml/post-html.cc
23+++ b/src/devices/grohtml/post-html.cc
24@@ -1399,7 +1399,7 @@ void header_desc::write_headings (FILE *f, int force)
25
26 buffer += as_string(h);
27 buffer += '\0';
28- fprintf(f, buffer.contents());
29+ fprintf(f, "%s", buffer.contents());
30 } else
31 fputs(g->text_string, f);
32 h++;
33--
342.12.0
35