diff options
author | André Draszik <adraszik@tycoint.com> | 2016-07-26 16:26:30 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 11:47:11 +0100 |
commit | 0152d75a6ee60b6037529332117a9382595caf2d (patch) | |
tree | 2e1e414bbb9684ced81e0d70562d41bd13d6babb /meta/recipes-extended | |
parent | f4709b1960d0d31c9f0c0068f6884957c7c7ec8a (diff) | |
download | poky-0152d75a6ee60b6037529332117a9382595caf2d.tar.gz |
bash: add patch to build w/ -Wformat-security
(From OE-Core rev: 45bc8a2c4bbe252526d5eee2547f8b9e06165e5a)
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/bash/bash/0001-help-fix-printf-format-security-warning.patch | 35 | ||||
-rw-r--r-- | meta/recipes-extended/bash/bash_4.3.30.bb | 1 |
2 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash/0001-help-fix-printf-format-security-warning.patch b/meta/recipes-extended/bash/bash/0001-help-fix-printf-format-security-warning.patch new file mode 100644 index 0000000000..5405c84c78 --- /dev/null +++ b/meta/recipes-extended/bash/bash/0001-help-fix-printf-format-security-warning.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From e5837a42f8f48a6a721805ff8f7fcd32861d09ca Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <adraszik@tycoint.com> | ||
3 | Date: Tue, 26 Jul 2016 13:09:47 +0100 | ||
4 | Subject: [PATCH] help: fix printf() format security warning | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | | ../../bash-4.3.30/builtins/../../bash-4.3.30/builtins/help.def: In function 'help_builtin': | ||
10 | | ../../bash-4.3.30/builtins/../../bash-4.3.30/builtins/help.def:130:7: error: format not a string literal and no format arguments [-Werror=format-security] | ||
11 | | printf (ngettext ("Shell commands matching keyword `", "Shell commands matching keywords `", (list->next ? 2 : 1))); | ||
12 | | ^~~~~~ | ||
13 | |||
14 | Signed-off-by: André Draszik <adraszik@tycoint.com> | ||
15 | --- | ||
16 | Upstream-Status: Pending | ||
17 | builtins/help.def | 2 +- | ||
18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/builtins/help.def b/builtins/help.def | ||
21 | index 1894f17..cf624c6 100644 | ||
22 | --- a/builtins/help.def | ||
23 | +++ b/builtins/help.def | ||
24 | @@ -127,7 +127,7 @@ help_builtin (list) | ||
25 | |||
26 | if (glob_pattern_p (list->word->word)) | ||
27 | { | ||
28 | - printf (ngettext ("Shell commands matching keyword `", "Shell commands matching keywords `", (list->next ? 2 : 1))); | ||
29 | + printf ("%s", ngettext ("Shell commands matching keyword `", "Shell commands matching keywords `", (list->next ? 2 : 1))); | ||
30 | print_word_list (list, ", "); | ||
31 | printf ("'\n\n"); | ||
32 | } | ||
33 | -- | ||
34 | 2.8.1 | ||
35 | |||
diff --git a/meta/recipes-extended/bash/bash_4.3.30.bb b/meta/recipes-extended/bash/bash_4.3.30.bb index 95ed3925c7..16a3139a2f 100644 --- a/meta/recipes-extended/bash/bash_4.3.30.bb +++ b/meta/recipes-extended/bash/bash_4.3.30.bb | |||
@@ -21,6 +21,7 @@ SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \ | |||
21 | file://fix-run-coproc-run-heredoc-run-execscript-run-test-f.patch \ | 21 | file://fix-run-coproc-run-heredoc-run-execscript-run-test-f.patch \ |
22 | file://run-ptest \ | 22 | file://run-ptest \ |
23 | file://fix-run-builtins.patch \ | 23 | file://fix-run-builtins.patch \ |
24 | file://0001-help-fix-printf-format-security-warning.patch \ | ||
24 | " | 25 | " |
25 | 26 | ||
26 | SRC_URI[tarball.md5sum] = "a27b3ee9be83bd3ba448c0ff52b28447" | 27 | SRC_URI[tarball.md5sum] = "a27b3ee9be83bd3ba448c0ff52b28447" |