mirror of
https://git.busybox.net/busybox.git
synced 2024-11-27 07:33:26 +08:00
tar: fix obscure case when name is "" and prefix is not ""
This commit is contained in:
parent
d93400bffb
commit
05efca90d2
@ -112,7 +112,7 @@ char get_header_tar(archive_handle_t *archive_handle)
|
||||
archive_handle->offset += 512;
|
||||
|
||||
/* If there is no filename its an empty header */
|
||||
if (tar.name[0] == 0) {
|
||||
if (tar.name[0] == 0 && tar.prefix[0] == 0) {
|
||||
if (end) {
|
||||
/* This is the second consecutive empty header! End of archive!
|
||||
* Read until the end to empty the pipe from gz or bz2
|
||||
|
Loading…
Reference in New Issue
Block a user