From 0ebae0adc1b7d45ea18c26d7b48d2da344b20847 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Tue, 9 May 2017 16:58:16 -0700 Subject: [PATCH] src: dotnet: FileSystemHost.GetSecurityByName: handle STATUS_REPARSE --- src/dotnet/FileSystemHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/FileSystemHost.cs b/src/dotnet/FileSystemHost.cs index dc8ff961..4c4d953e 100644 --- a/src/dotnet/FileSystemHost.cs +++ b/src/dotnet/FileSystemHost.cs @@ -306,7 +306,7 @@ namespace Fsp FileName, out FileAttributes, ref SecurityDescriptorBytes); - if (0 <= Result) + if (0 <= Result && 260/*STATUS_REPARSE*/ != Result) { if (IntPtr.Zero != PFileAttributes) Marshal.WriteInt32(PFileAttributes, (Int32)FileAttributes);