diff options
| -rw-r--r-- | meta/recipes-extended/tar/tar-1.26/tar-1.26-fortifysourcessigabrt.patch | 36 | ||||
| -rw-r--r-- | meta/recipes-extended/tar/tar_1.26.bb | 3 |
2 files changed, 38 insertions, 1 deletions
diff --git a/meta/recipes-extended/tar/tar-1.26/tar-1.26-fortifysourcessigabrt.patch b/meta/recipes-extended/tar/tar-1.26/tar-1.26-fortifysourcessigabrt.patch new file mode 100644 index 0000000000..6aef096896 --- /dev/null +++ b/meta/recipes-extended/tar/tar-1.26/tar-1.26-fortifysourcessigabrt.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | port fedora patch for fortify sources sigabort. See | ||
| 2 | https://qa.mandriva.com/show_bug.cgi?id=61419 for details. | ||
| 3 | |||
| 4 | Upstream-Status: Pending | ||
| 5 | |||
| 6 | Signed-off-by: Christopher Larson <chris_larson@mentor.com> | ||
| 7 | Signed-off-by: Fahad Usman <fahad_usman@mentor.com> | ||
| 8 | |||
| 9 | --- | ||
| 10 | src/create.c | 8 ++++---- | ||
| 11 | 1 file changed, 4 insertions(+), 4 deletions(-) | ||
| 12 | |||
| 13 | --- tar-1.26.orig/src/create.c | ||
| 14 | +++ tar-1.26/src/create.c | ||
| 15 | @@ -562,8 +562,8 @@ write_gnu_long_link (struct tar_stat_inf | ||
| 16 | GNAME_TO_CHARS (tmpname, header->header.gname); | ||
| 17 | free (tmpname); | ||
| 18 | |||
| 19 | - strcpy (header->buffer + offsetof (struct posix_header, magic), | ||
| 20 | - OLDGNU_MAGIC); | ||
| 21 | + strncpy (header->buffer + offsetof (struct posix_header, magic), | ||
| 22 | + OLDGNU_MAGIC, sizeof(header->header.magic)); | ||
| 23 | header->header.typeflag = type; | ||
| 24 | finish_header (st, header, -1); | ||
| 25 | |||
| 26 | @@ -900,8 +900,8 @@ start_header (struct tar_stat_info *st) | ||
| 27 | case OLDGNU_FORMAT: | ||
| 28 | case GNU_FORMAT: /*FIXME?*/ | ||
| 29 | /* Overwrite header->header.magic and header.version in one blow. */ | ||
| 30 | - strcpy (header->buffer + offsetof (struct posix_header, magic), | ||
| 31 | - OLDGNU_MAGIC); | ||
| 32 | + strncpy (header->buffer + offsetof (struct posix_header, magic), | ||
| 33 | + OLDGNU_MAGIC, sizeof(header->header.magic)); | ||
| 34 | break; | ||
| 35 | |||
| 36 | case POSIX_FORMAT: | ||
diff --git a/meta/recipes-extended/tar/tar_1.26.bb b/meta/recipes-extended/tar/tar_1.26.bb index 03a35c3d3f..d45c2b14ed 100644 --- a/meta/recipes-extended/tar/tar_1.26.bb +++ b/meta/recipes-extended/tar/tar_1.26.bb | |||
| @@ -3,9 +3,10 @@ require tar.inc | |||
| 3 | LICENSE = "GPLv3" | 3 | LICENSE = "GPLv3" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 5 | 5 | ||
| 6 | PR = "r4" | 6 | PR = "r5" |
| 7 | 7 | ||
| 8 | SRC_URI += "file://remove-gets.patch \ | 8 | SRC_URI += "file://remove-gets.patch \ |
| 9 | file://tar-1.26-fortifysourcessigabrt.patch\ | ||
| 9 | " | 10 | " |
| 10 | 11 | ||
| 11 | SRC_URI[md5sum] = "2cee42a2ff4f1cd4f9298eeeb2264519" | 12 | SRC_URI[md5sum] = "2cee42a2ff4f1cd4f9298eeeb2264519" |
