mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 08:53:01 -05:00
Fixed indentation
This commit is contained in:
parent
916b4f5c3d
commit
88516f371a
@ -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(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user