Fixed indentation

This commit is contained in:
FrKaram 2018-07-01 13:45:47 +02:00
parent 916b4f5c3d
commit 88516f371a

View File

@ -904,17 +904,17 @@ namespace Fsp.Interop
Byte[] ModificationDescriptorBytes) Byte[] ModificationDescriptorBytes)
{ {
fixed (Byte *S = SecurityDescriptorBytes) fixed (Byte *S = SecurityDescriptorBytes)
fixed (Byte *M = ModificationDescriptorBytes) fixed (Byte *M = ModificationDescriptorBytes)
{ {
IntPtr SecurityDescriptor; IntPtr SecurityDescriptor;
Int32 Result = FspSetSecurityDescriptor( Int32 Result = FspSetSecurityDescriptor(
(IntPtr)S, SecurityInformation, (IntPtr)M, out SecurityDescriptor); (IntPtr)S, SecurityInformation, (IntPtr)M, out SecurityDescriptor);
if (0 > Result) if (0 > Result)
return null; return null;
SecurityDescriptorBytes = MakeSecurityDescriptor(SecurityDescriptor); SecurityDescriptorBytes = MakeSecurityDescriptor(SecurityDescriptor);
FspDeleteSecurityDescriptor(SecurityDescriptor, _FspSetSecurityDescriptorPtr); FspDeleteSecurityDescriptor(SecurityDescriptor, _FspSetSecurityDescriptorPtr);
return SecurityDescriptorBytes; return SecurityDescriptorBytes;
} }
} }
internal unsafe static Int32 CopyReparsePoint( internal unsafe static Int32 CopyReparsePoint(