cpio: fix restoration of file ownership, closes 9306
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 12 Oct 2016 18:56:46 +0000 (20:56 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 12 Oct 2016 18:56:46 +0000 (20:56 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
archival/libarchive/init_handle.c

index cbae06ac332b8976f365452b2930afd83bf5249d..dcba6666f9cff96ddbc813b9c0c57f123362a559 100644 (file)
@@ -17,6 +17,10 @@ archive_handle_t* FAST_FUNC init_handle(void)
        archive_handle->action_data = data_skip;
        archive_handle->filter = filter_accept_all;
        archive_handle->seek = seek_by_jump;
+#if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM
+       archive_handle->cpio__owner.uid = (uid_t)-1L;
+       archive_handle->cpio__owner.gid = (gid_t)-1L;
+#endif
 
        return archive_handle;
 }