diff options
author | Denys Vlasenko | 2020-10-02 18:30:53 +0200 |
---|---|---|
committer | Denys Vlasenko | 2020-10-02 18:30:53 +0200 |
commit | 16e82c61d4db91e2e888600cdee7cf656ba4774c (patch) | |
tree | bb3de36e15da98eed3a706bb0829327030359c63 /archival/libarchive/get_header_tar.c | |
parent | a90a54aead2a082f9bc4d44fd48d1042bcd2c3fb (diff) | |
download | busybox-16e82c61d4db91e2e888600cdee7cf656ba4774c.zip busybox-16e82c61d4db91e2e888600cdee7cf656ba4774c.tar.gz |
tar: fix fallout of last_char_is(NULL) no longer being allowed
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/get_header_tar.c')
-rw-r--r-- | archival/libarchive/get_header_tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/get_header_tar.c b/archival/libarchive/get_header_tar.c index b3131ff..2ab3c04 100644 --- a/archival/libarchive/get_header_tar.c +++ b/archival/libarchive/get_header_tar.c @@ -352,7 +352,7 @@ char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) /* case 0: */ case '0': #if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY - if (last_char_is(file_header->name, '/')) { + if (file_header->name && last_char_is(file_header->name, '/')) { goto set_dir; } #endif |