From 681faad85f738a5ef1fc81c1dbe93c9b7d57ece4 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 25 Mar 2015 23:32:29 -0500 Subject: [PATCH] wimlib_iterate_dir_tree(): checksum unhashed blobs --- src/iterate_dir.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/iterate_dir.c b/src/iterate_dir.c index 7dc63486..5bf138cc 100644 --- a/src/iterate_dir.c +++ b/src/iterate_dir.c @@ -261,6 +261,11 @@ wimlib_iterate_dir_tree(WIMStruct *wim, int image, const tchar *_path, path = canonicalize_wim_path(_path); if (path == NULL) return WIMLIB_ERR_NOMEM; + + ret = wim_checksum_unhashed_blobs(wim); + if (ret) + return ret; + struct image_iterate_dir_tree_ctx ctx = { .path = path, .flags = flags, -- 2.43.0