diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-06-26 10:53:52 +0300 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-06-26 07:56:31 +0000 |
commit | 805fb203b3dd63ab2408e934172ee58517597064 (patch) | |
tree | 5fee8000186cb992ad04cdee74255ccd8c311700 /src | |
parent | e3ce43830c4f252d63628ce167033ef7ce83f368 (diff) | |
download | apk-tools-805fb203b3dd63ab2408e934172ee58517597064.tar.gz apk-tools-805fb203b3dd63ab2408e934172ee58517597064.tar.bz2 apk-tools-805fb203b3dd63ab2408e934172ee58517597064.tar.xz apk-tools-805fb203b3dd63ab2408e934172ee58517597064.zip |
db: fix current directory instance caching in tar extraction
Depending how the directory entries are ordered, the cached dir
instance might not have been updated correctly.
Diffstat (limited to 'src')
-rw-r--r-- | src/database.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database.c b/src/database.c index 4889289..b74e40f 100644 --- a/src/database.c +++ b/src/database.c @@ -2410,7 +2410,7 @@ static int apk_db_install_archive_entry(void *_ctx, return 0; /* Make sure the file is part of the cached directory tree */ - diri = find_diri(ipkg, bdir, diri, &ctx->file_diri_node); + diri = ctx->diri = find_diri(ipkg, bdir, diri, &ctx->file_diri_node); if (diri == NULL) { if (!APK_BLOB_IS_NULL(bdir)) { apk_error(PKG_VER_FMT": "BLOB_FMT": no dirent in archive", |