From: Eric Biggers Date: Sun, 28 Oct 2012 06:30:21 +0000 (-0500) Subject: #ifdef WITH_NTFS_3g in clone_lookup_table_entry() X-Git-Tag: v1.0.4~22 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=c625437fdea7025e10861cd2a97f06ca10964be7 #ifdef WITH_NTFS_3g in clone_lookup_table_entry() --- diff --git a/src/lookup_table.c b/src/lookup_table.c index 3d66ca18..79874f30 100644 --- a/src/lookup_table.c +++ b/src/lookup_table.c @@ -99,6 +99,7 @@ clone_lookup_table_entry(const struct lookup_table_entry *old) memcpy(new->attached_buffer, old->attached_buffer, wim_resource_size(old)); break; +#ifdef WITH_NTFS_3G case RESOURCE_IN_NTFS_VOLUME: if (old->ntfs_loc) { struct ntfs_location *loc; @@ -120,6 +121,7 @@ clone_lookup_table_entry(const struct lookup_table_entry *old) loc->stream_name_utf16_num_chars * 2); } break; +#endif } return new; out_free: