diff options
| -rw-r--r-- | meta-oe/recipes-extended/dash/dash/0001-Fix-printf-format-errors-with-clang.patch | 28 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/dash/dash_0.5.8.bb | 4 |
2 files changed, 31 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/dash/dash/0001-Fix-printf-format-errors-with-clang.patch b/meta-oe/recipes-extended/dash/dash/0001-Fix-printf-format-errors-with-clang.patch new file mode 100644 index 0000000000..b3991faa88 --- /dev/null +++ b/meta-oe/recipes-extended/dash/dash/0001-Fix-printf-format-errors-with-clang.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | From 3ddf397febf47f8de9ca2805e92355ecb3ba0e9f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 8 Apr 2017 12:37:54 -0700 | ||
| 4 | Subject: [PATCH] Fix printf format errors with clang | ||
| 5 | |||
| 6 | error: format string is not a string literal (potentially insecure) | ||
| 7 | |||
| 8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 9 | --- | ||
| 10 | src/jobs.c | 2 +- | ||
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 12 | |||
| 13 | diff --git a/src/jobs.c b/src/jobs.c | ||
| 14 | index c2c2332..dcb81c1 100644 | ||
| 15 | --- a/src/jobs.c | ||
| 16 | +++ b/src/jobs.c | ||
| 17 | @@ -427,7 +427,7 @@ sprint_status(char *s, int status, int sigonly) | ||
| 18 | goto out; | ||
| 19 | #endif | ||
| 20 | } | ||
| 21 | - col = fmtstr(s, 32, strsignal(st)); | ||
| 22 | + col = fmtstr(s, 32, "%s", strsignal(st)); | ||
| 23 | #ifdef WCOREDUMP | ||
| 24 | if (WCOREDUMP(status)) { | ||
| 25 | col += fmtstr(s + col, 16, " (core dumped)"); | ||
| 26 | -- | ||
| 27 | 2.12.2 | ||
| 28 | |||
diff --git a/meta-oe/recipes-extended/dash/dash_0.5.8.bb b/meta-oe/recipes-extended/dash/dash_0.5.8.bb index 4961d7b83f..78ca60d6fc 100644 --- a/meta-oe/recipes-extended/dash/dash_0.5.8.bb +++ b/meta-oe/recipes-extended/dash/dash_0.5.8.bb | |||
| @@ -7,7 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e" | |||
| 7 | 7 | ||
| 8 | inherit autotools update-alternatives | 8 | inherit autotools update-alternatives |
| 9 | 9 | ||
| 10 | SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz" | 10 | SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz \ |
| 11 | file://0001-Fix-printf-format-errors-with-clang.patch \ | ||
| 12 | " | ||
| 11 | SRC_URI[md5sum] = "5c152209680dab3c319e8923f6c51378" | 13 | SRC_URI[md5sum] = "5c152209680dab3c319e8923f6c51378" |
| 12 | SRC_URI[sha256sum] = "c6db3a237747b02d20382a761397563d813b306c020ae28ce25a1c3915fac60f" | 14 | SRC_URI[sha256sum] = "c6db3a237747b02d20382a761397563d813b306c020ae28ce25a1c3915fac60f" |
| 13 | 15 | ||
