[LTP] [PATCH] ptrace01: Fix missing format string
Khem Raj
raj.khem@gmail.com
Wed May 20 07:23:18 CEST 2020
Fixes
| ptrace01.c:89:2: error: format string is not a string literal
(potentially insecure) [-Werror,-Wformat-security]
| tst_res(TINFO, tc->message);
| ^ ~~~~~~~~~~~
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
testcases/kernel/syscalls/ptrace/ptrace01.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testcases/kernel/syscalls/ptrace/ptrace01.c b/testcases/kernel/syscalls/ptrace/ptrace01.c
index 87a99e4150..9071bbabaf 100644
--- a/testcases/kernel/syscalls/ptrace/ptrace01.c
+++ b/testcases/kernel/syscalls/ptrace/ptrace01.c
@@ -86,7 +86,7 @@ static void run(unsigned int i)
got_signal = 0;
- tst_res(TINFO, tc->message);
+ tst_res(TINFO, "%s", tc->message);
if (tc->handler == 1) {
parent_act.sa_handler = parent_handler;
--
2.26.2
More information about the ltp
mailing list