]> wimlib.net Git - wimlib/blobdiff - src/dentry.c
read_dentry(): Ignore ReparseTag for non-reparse-points
[wimlib] / src / dentry.c
index 16d9b416e8da2cdaa03cb6e921debe609810f3c0..97ad628f8a5df7ef5f3d27eac864aa4d40f4db4c 100644 (file)
@@ -692,8 +692,8 @@ new_timeless_inode()
        if (inode) {
                inode->i_security_id = -1;
                inode->i_nlink = 1;
-       #ifdef WITH_FUSE
                inode->i_next_stream_id = 1;
+       #ifdef WITH_FUSE
                if (pthread_mutex_init(&inode->i_mutex, NULL) != 0) {
                        ERROR_WITH_ERRNO("Error initializing mutex");
                        FREE(inode);
@@ -1025,9 +1025,7 @@ do_inode_add_ads(struct wim_inode *inode, const void *stream_name,
        new_entry = &inode->i_ads_entries[num_ads - 1];
        if (init_ads_entry(new_entry, stream_name, stream_name_nbytes, is_utf16le))
                return NULL;
-#ifdef WITH_FUSE
        new_entry->stream_id = inode->i_next_stream_id++;
-#endif
        inode->i_num_ads = num_ads;
        return new_entry;
 }
@@ -1445,19 +1443,16 @@ read_dentry(const u8 metadata_resource[], u64 metadata_resource_len,
 
        p = get_bytes(p, SHA1_HASH_SIZE, inode->i_hash);
 
-       /*
-        * I don't know what's going on here.  It seems like M$ screwed up the
+       /* I don't know what's going on here.  It seems like M$ screwed up the
         * reparse points, then put the fields in the same place and didn't
-        * document it.  The WIM_HDR_FLAG_RP_FIX flag in the WIM header might
-        * have something to do with this, but it's not documented.
-        */
+        * document it.  */
        if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
-               /* ??? */
                p += 4;
                p = get_u32(p, &inode->i_reparse_tag);
                p += 4;
        } else {
-               p = get_u32(p, &inode->i_reparse_tag);
+               p += 4;
+               /* i_reparse_tag is irrelevant; just leave it at 0. */
                p = get_u64(p, &inode->i_ino);
        }