X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fntfs-capture.c;fp=src%2Fntfs-capture.c;h=7f4f2bb4c2858c26ad313a7882e330b13229bc80;hp=43d7ca2e02650243e5b02c38f640afff659298dc;hb=f3e97b29c4a8c564d54b0fd11cd43a9b4cd6a8ad;hpb=fc8276d0a3efb3df5f7512b3fa9499eb1b3449eb diff --git a/src/ntfs-capture.c b/src/ntfs-capture.c index 43d7ca2e..7f4f2bb4 100644 --- a/src/ntfs-capture.c +++ b/src/ntfs-capture.c @@ -165,7 +165,7 @@ capture_ntfs_streams(struct wim_inode *inode, { u64 data_size = ntfs_get_attribute_value_length(actx->attr); u64 name_length = actx->attr->name_length; - struct wim_lookup_table_entry **my_ptr; + struct wim_lookup_table_entry **back_ptr; if (data_size == 0) { if (errno != 0) { ERROR_WITH_ERRNO("Failed to get size of attribute of " @@ -224,7 +224,7 @@ capture_ntfs_streams(struct wim_inode *inode, ret = WIMLIB_ERR_NTFS_3G; goto out_free_lte; } - my_ptr = &inode->i_lte; + back_ptr = &inode->i_lte; } else { /* Named data stream. Put the reference to it in the * alternate data stream entries */ @@ -236,9 +236,9 @@ capture_ntfs_streams(struct wim_inode *inode, if (!new_ads_entry) goto out_free_lte; wimlib_assert(new_ads_entry->stream_name_nbytes == name_length * 2); - my_ptr = &new_ads_entry->lte; + back_ptr = &new_ads_entry->lte; } - lookup_table_insert_unhashed(lookup_table, lte, my_ptr); + lookup_table_insert_unhashed(lookup_table, lte, back_ptr); } ret = 0; goto out_put_actx;