]> wimlib.net Git - wimlib/blobdiff - src/wim.c
Remove verify_dentry(); separate refcnt recalc. from verify_inode()
[wimlib] / src / wim.c
index 7927af3cd41ac2cc526050cff8bdaa5a467328ee..dec3ee96ba0541f1ebc555ac7486a0ecd7f6a2b0 100644 (file)
--- a/src/wim.c
+++ b/src/wim.c
@@ -159,6 +159,7 @@ wimlib_create_new_wim(int ctype, WIMStruct **w_ret)
                goto out_free;
        }
        w->lookup_table = table;
                goto out_free;
        }
        w->lookup_table = table;
+       w->refcnts_ok = 1;
        *w_ret = w;
        return 0;
 out_free:
        *w_ret = w;
        return 0;
 out_free:
@@ -740,9 +741,11 @@ can_delete_from_wim(WIMStruct *wim)
        int ret;
 
        ret = can_modify_wim(wim);
        int ret;
 
        ret = can_modify_wim(wim);
-       if (ret == 0 && !wim->all_images_verified)
-               ret = wim_run_full_verifications(wim);
-       return ret;
+       if (ret)
+               return ret;
+       if (!wim->refcnts_ok)
+               wim_recalculate_refcnts(wim);
+       return 0;
 }
 
 /* Frees the memory for the WIMStruct, including all internal memory; also
 }
 
 /* Frees the memory for the WIMStruct, including all internal memory; also