From 805fb203b3dd63ab2408e934172ee58517597064 Mon Sep 17 00:00:00 2001 From: Timo Teräs Date: Mon, 26 Jun 2017 10:53:52 +0300 Subject: 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. --- src/database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- cgit v1.2.3-70-g09d2