Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1 | From 443980ddc82fb40e2e1f9544f2be169bd23dd246 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Sat, 17 Jun 2017 16:49:24 -0700 |
| 4 | Subject: [PATCH] shell.c: Fix format not a string literal warning |
| 5 | |
| 6 | src/shell.c:695:20: error: format not a string literal and no format arguments [-Werror=format-security] |
| 7 | | fprintf(stderr,zHelp); |
| 8 | | ^~~~~ |
| 9 | |
| 10 | Upstream-Status: Pending |
| 11 | |
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 13 | --- |
| 14 | src/shell.c | 2 +- |
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 16 | |
| 17 | diff --git a/src/shell.c b/src/shell.c |
| 18 | index bb46c49..3c6fe0f 100644 |
| 19 | --- a/src/shell.c |
| 20 | +++ b/src/shell.c |
| 21 | @@ -692,7 +692,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){ |
| 22 | }else |
| 23 | |
| 24 | if( c=='h' && strncmp(azArg[0], "help", n)==0 ){ |
| 25 | - fprintf(stderr,zHelp); |
| 26 | + fprintf(stderr, "%s", zHelp); |
| 27 | }else |
| 28 | |
| 29 | if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){ |
| 30 | -- |
| 31 | 2.13.1 |
| 32 | |