diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-06-26 10:53:52 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-06-26 10:59:37 +0300 |
commit | 51ec463e9d9b5e5c20e1e476870b19f14f856456 (patch) | |
tree | 0d50936bb6526c2f4ea125ee5f4161fdd46b6e9d /src | |
parent | 17dd532e428e647e9d977e727c87c0f3a4e93ae3 (diff) | |
download | apk-tools-51ec463e9d9b5e5c20e1e476870b19f14f856456.tar.bz2 apk-tools-51ec463e9d9b5e5c20e1e476870b19f14f856456.tar.xz |
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. This has not been
a problem as the entries have been ordered, but is now triggered
on ppc.
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 7c3c646..ab6a8cb 100644 --- a/src/database.c +++ b/src/database.c @@ -2409,7 +2409,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", |