mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 09:22:57 -05:00
dll, sys: FSP_NEXT_EA
This commit is contained in:
@ -908,9 +908,10 @@ namespace Fsp.Interop
|
||||
FullEaInformation *EndP = (FullEaInformation *)(Ea.ToInt64() + EaLength);
|
||||
Int32 Result;
|
||||
Result = 0/*STATUS_SUCCESS*/;
|
||||
for (;
|
||||
EndP > P && 0 != P->NextEntryOffset;
|
||||
P = (FullEaInformation *)(((IntPtr)P).ToInt64() + P->NextEntryOffset))
|
||||
for (; EndP > P;
|
||||
P = 0 != P->NextEntryOffset ?
|
||||
(FullEaInformation *)(((IntPtr)P).ToInt64() + P->NextEntryOffset) :
|
||||
EndP)
|
||||
{
|
||||
String EaName = Marshal.PtrToStringAnsi((IntPtr)P->EaName, P->EaNameLength);
|
||||
Byte[] EaValue = new Byte[P->EaValueLength];
|
||||
|
Reference in New Issue
Block a user