Padded end of $SDH entries with 0x490049 like Windows (purpose unknown)

N2009_11_14_FIXES
jpandre 2007-10-17 12:17:51 +00:00
parent 85c536de3f
commit 5f914d0492
1 changed files with 2 additions and 1 deletions

View File

@ -911,7 +911,8 @@ static int entersecurity_indexes(ntfs_volume *vol, s64 attrsz,
newsdh.dataoffsl = realign.parts.dataoffsl;
newsdh.datasize = cpu_to_le32(attrsz
+ sizeof(SECURITY_DESCRIPTOR_HEADER));
newsdh.fill3 = cpu_to_le32(0);
/* special filler value... */
newsdh.fill3 = cpu_to_le32(0x00490049);
if (!ntfs_ie_add(xsdh,(INDEX_ENTRY*)&newsdh))
res = 0;
}