]> wimlib.net Git - wimlib/commitdiff
read_metadata_resource(): Check for named root here
authorEric Biggers <ebiggers3@gmail.com>
Wed, 22 May 2013 05:04:38 +0000 (00:04 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 22 May 2013 05:04:38 +0000 (00:04 -0500)
src/metadata_resource.c
src/verify.c

index 109b0d32ca2499d308c0a68d8d13d1f1865211f8..e600f30185b8c01f1423af66b34d9b010de0309c 100644 (file)
@@ -150,6 +150,16 @@ read_metadata_resource(WIMStruct *wim, struct wim_image_metadata *imd)
                goto out_free_security_data;
        }
 
                goto out_free_security_data;
        }
 
+       if (dentry_has_long_name(root) || dentry_has_short_name(root)) {
+               WARNING("The root directory has a nonempty name (removing it)");
+               FREE(root->file_name);
+               FREE(root->short_name);
+               root->file_name = NULL;
+               root->short_name = NULL;
+               root->file_name_nbytes = 0;
+               root->short_name_nbytes = 0;
+       }
+
        /* This is the root dentry, so set its parent to itself. */
        root->parent = root;
 
        /* This is the root dentry, so set its parent to itself. */
        root->parent = root;
 
index d348e302b2d65edfc4ff29ed66e698d875c660ac..5f7924b5f3d4768dabd953f2327829145b6b5e0c 100644 (file)
@@ -124,7 +124,6 @@ verify_dentry(struct wim_dentry *dentry, void *wim)
 {
        int ret;
        WIMStruct *w = wim;
 {
        int ret;
        WIMStruct *w = wim;
-
        /* Verify the associated inode, but only one time no matter how many
         * dentries it has (unless we are doing a full verification of the WIM,
         * in which case we need to force the inode to be verified again.) */
        /* Verify the associated inode, but only one time no matter how many
         * dentries it has (unless we are doing a full verification of the WIM,
         * in which case we need to force the inode to be verified again.) */
@@ -133,35 +132,6 @@ verify_dentry(struct wim_dentry *dentry, void *wim)
                if (ret)
                        return ret;
        }
                if (ret)
                        return ret;
        }
-
-       /* Make sure root dentry is unnamed, while every other dentry has at
-        * least a long name.
-        *
-        * I am assuming that dentries having only a DOS name is illegal; i.e.,
-        * Windows will always combine the Win32 name and DOS name for a file
-        * into a single WIM dentry, even if they are stored separately on NTFS.
-        * (This seems to be the case...) */
-       if (dentry_is_root(dentry)) {
-               if (dentry_has_long_name(dentry) || dentry_has_short_name(dentry)) {
-                       WARNING("The root dentry has a nonempty name");
-                       FREE(dentry->file_name);
-                       FREE(dentry->short_name);
-                       dentry->file_name = NULL;
-                       dentry->short_name = NULL;
-                       dentry->file_name_nbytes = 0;
-                       dentry->short_name_nbytes = 0;
-               }
-       }
-
-#if 0
-       /* Check timestamps */
-       if (inode->i_last_access_time < inode->i_creation_time ||
-           inode->i_last_write_time < inode->i_creation_time) {
-               WARNING("Dentry `%"TS"' was created after it was last accessed or "
-                       "written to", dentry->full_path);
-       }
-#endif
-
        return 0;
 }
 
        return 0;
 }