]> wimlib.net Git - wimlib/blobdiff - src/mount.c
Call delete_staging_dir() only on read-write mount
[wimlib] / src / mount.c
index 7f0def11e27f37ec338bc0272c3c03b015ff5509..bd02cec6ae3f1168cb853d779dca38462c06cd42 100644 (file)
@@ -427,22 +427,23 @@ static void wimfs_destroy(void *p)
                DEBUG("Received message: [%d %d]\n", msg[0], msg[1]);
        }
 
-       if (commit && (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE)) {
-               status = chdir(working_directory);
-               if (status != 0) {
-                       ERROR("chdir(): %m\n");
-                       status = WIMLIB_ERR_NOTDIR;
-                       goto done;
+       status = 0;
+       if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
+               if (commit) {
+                       status = chdir(working_directory);
+                       if (status != 0) {
+                               ERROR("chdir(): %m\n");
+                               status = WIMLIB_ERR_NOTDIR;
+                               goto done;
+                       }
+                       status = rebuild_wim(w, (check_integrity != 0));
+               }
+               ret = delete_staging_dir();
+               if (ret != 0) {
+                       ERROR("Failed to delete the staging directory: %m\n");
+                       if (status == 0)
+                               status = ret;
                }
-               status = rebuild_wim(w, (check_integrity != 0));
-       } else {
-               status = 0;
-       }
-       ret = delete_staging_dir();
-       if (ret != 0) {
-               ERROR("Failed to delete the staging directory: %m\n");
-               if (status == 0)
-                       status = ret;
        }
 done:
        ret = mq_send(daemon_to_unmount_mq, &status, 1, 1);