diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-13 13:26:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-13 13:27:52 +0200 |
commit | dd56921e2d404c8fc9484290a36411a13d14df1a (patch) | |
tree | 2106889f02016f67a38088b62920a7092a1632ab | |
parent | 266f6f19732f9b35487a87a346e58c1c3a0af43d (diff) | |
download | busybox-w32-dd56921e2d404c8fc9484290a36411a13d14df1a.tar.gz busybox-w32-dd56921e2d404c8fc9484290a36411a13d14df1a.tar.bz2 busybox-w32-dd56921e2d404c8fc9484290a36411a13d14df1a.zip |
dpkg: fix symlink creation, closes 10941
function old new delta
get_header_ar 434 442 +8
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/libarchive/get_header_ar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archival/libarchive/get_header_ar.c b/archival/libarchive/get_header_ar.c index 93e071c9f..a97970630 100644 --- a/archival/libarchive/get_header_ar.c +++ b/archival/libarchive/get_header_ar.c | |||
@@ -127,8 +127,10 @@ char FAST_FUNC get_header_ar(archive_handle_t *archive_handle) | |||
127 | archive_handle->action_header(typed); | 127 | archive_handle->action_header(typed); |
128 | #if ENABLE_DPKG || ENABLE_DPKG_DEB | 128 | #if ENABLE_DPKG || ENABLE_DPKG_DEB |
129 | if (archive_handle->dpkg__sub_archive) { | 129 | if (archive_handle->dpkg__sub_archive) { |
130 | while (archive_handle->dpkg__action_data_subarchive(archive_handle->dpkg__sub_archive) == EXIT_SUCCESS) | 130 | struct archive_handle_t *sa = archive_handle->dpkg__sub_archive; |
131 | while (archive_handle->dpkg__action_data_subarchive(sa) == EXIT_SUCCESS) | ||
131 | continue; | 132 | continue; |
133 | create_symlinks_from_list(sa->symlink_placeholders); | ||
132 | } else | 134 | } else |
133 | #endif | 135 | #endif |
134 | archive_handle->action_data(archive_handle); | 136 | archive_handle->action_data(archive_handle); |