aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/busybox-1.18.3/get_header_tar.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/busybox/busybox-1.18.3/get_header_tar.patch')
-rw-r--r--recipes/busybox/busybox-1.18.3/get_header_tar.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/busybox/busybox-1.18.3/get_header_tar.patch b/recipes/busybox/busybox-1.18.3/get_header_tar.patch
new file mode 100644
index 0000000000..62b55af501
--- /dev/null
+++ b/recipes/busybox/busybox-1.18.3/get_header_tar.patch
@@ -0,0 +1,13 @@
+diff --git a/archival/libarchive/get_header_tar.c b/archival/libarchive/get_header_tar.c
+index 78b0ae2..58b15c1 100644
+--- a/archival/libarchive/get_header_tar.c
++++ b/archival/libarchive/get_header_tar.c
+@@ -314,6 +314,8 @@ char FAST_FUNC get_header_tar(archive_handle_t *archive_handle)
+ file_header->name = concat_path_file(tar.prefix, tar.name);
+ } else
+ file_header->name = xstrdup(tar.name);
++ if (strlen(file_header->name) > 100)
++ file_header->name[100] = 0;
+ }
+
+ /* Set bits 12-15 of the files mode */