diff options
author | root <root@rshg054.dnsready.net> | 2013-03-04 00:03:49 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-04 00:03:49 -0800 |
commit | 3a8d026e8e859ff4c9aa813d5f1eb2afa5663e78 (patch) | |
tree | 48288f077555b04e1dd7cec1e637aeb94a322f0c /core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch | |
parent | 945c9cd1e94fab87653f84598812dec707843d26 (diff) |
Mon Mar 4 00:03:48 PST 2013
Diffstat (limited to 'core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch')
-rw-r--r-- | core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch b/core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch new file mode 100644 index 000000000..a255f2cf2 --- /dev/null +++ b/core/libarchive/0001-mtree-fix-line-filename-length-calculation.patch @@ -0,0 +1,29 @@ +From e65bf287f0133426b26611fe3e80b51267987106 Mon Sep 17 00:00:00 2001 +From: Dave Reisner <dreisner@archlinux.org> +Date: Thu, 21 Feb 2013 19:01:06 -0500 +Subject: [PATCH] mtree: fix line filename length calculation. Fixes #301. + Signed-off-by: Andres Mejia <amejia004@gmail.com> + +--- + libarchive/archive_write_set_format_mtree.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/libarchive/archive_write_set_format_mtree.c b/libarchive/archive_write_set_format_mtree.c +index 9c0613c..f37f723 100644 +--- a/libarchive/archive_write_set_format_mtree.c ++++ b/libarchive/archive_write_set_format_mtree.c +@@ -1855,9 +1855,9 @@ mtree_entry_setup_filenames(struct archive_write *a, struct mtree_entry *file, + return (ret); + } + +- /* Make a basename from dirname and slash */ ++ /* Make a basename from file->parentdir.s and slash */ + *slash = '\0'; +- file->parentdir.length = slash - dirname; ++ file->parentdir.length = slash - file->parentdir.s; + archive_strcpy(&(file->basename), slash + 1); + return (ret); + } +-- +1.8.1.4 + |