diff options
-rw-r--r-- | meta/recipes-extended/ltp/ltp/0001-ptrace01-Fix-missing-format-string.patch | 33 | ||||
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20200515.bb | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-ptrace01-Fix-missing-format-string.patch b/meta/recipes-extended/ltp/ltp/0001-ptrace01-Fix-missing-format-string.patch new file mode 100644 index 0000000000..27b890e22b --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/0001-ptrace01-Fix-missing-format-string.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From adb9587466a493fdd9d4410f1b8b130ebca06daa Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 19 May 2020 22:21:23 -0700 | ||
4 | Subject: [PATCH] ptrace01: Fix missing format string | ||
5 | |||
6 | Fixes | ||
7 | | ptrace01.c:89:2: error: format string is not a string literal | ||
8 | (potentially insecure) [-Werror,-Wformat-security] | ||
9 | | tst_res(TINFO, tc->message); | ||
10 | | ^ ~~~~~~~~~~~ | ||
11 | |||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | Upstream-Status: Backport [58424835952641f4fd60c0ae3ab6c64decca3f8a] | ||
14 | --- | ||
15 | testcases/kernel/syscalls/ptrace/ptrace01.c | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/testcases/kernel/syscalls/ptrace/ptrace01.c b/testcases/kernel/syscalls/ptrace/ptrace01.c | ||
19 | index 87a99e4150..9071bbabaf 100644 | ||
20 | --- a/testcases/kernel/syscalls/ptrace/ptrace01.c | ||
21 | +++ b/testcases/kernel/syscalls/ptrace/ptrace01.c | ||
22 | @@ -86,7 +86,7 @@ static void run(unsigned int i) | ||
23 | |||
24 | got_signal = 0; | ||
25 | |||
26 | - tst_res(TINFO, tc->message); | ||
27 | + tst_res(TINFO, "%s", tc->message); | ||
28 | |||
29 | if (tc->handler == 1) { | ||
30 | parent_act.sa_handler = parent_handler; | ||
31 | -- | ||
32 | 2.26.2 | ||
33 | |||
diff --git a/meta/recipes-extended/ltp/ltp_20200515.bb b/meta/recipes-extended/ltp/ltp_20200515.bb index 37bad53766..e82f6b33a1 100644 --- a/meta/recipes-extended/ltp/ltp_20200515.bb +++ b/meta/recipes-extended/ltp/ltp_20200515.bb | |||
@@ -34,6 +34,7 @@ SRC_URI = "git://github.com/linux-test-project/ltp.git \ | |||
34 | file://0004-guard-mallocopt-with-__GLIBC__.patch \ | 34 | file://0004-guard-mallocopt-with-__GLIBC__.patch \ |
35 | file://0007-Fix-test_proc_kill-hanging.patch \ | 35 | file://0007-Fix-test_proc_kill-hanging.patch \ |
36 | file://0001-Add-more-musl-exclusions.patch \ | 36 | file://0001-Add-more-musl-exclusions.patch \ |
37 | file://0001-ptrace01-Fix-missing-format-string.patch \ | ||
37 | " | 38 | " |
38 | 39 | ||
39 | S = "${WORKDIR}/git" | 40 | S = "${WORKDIR}/git" |