浏览代码

SMB2: Fixed InvalidCastException

Tal Aloni 8 年之前
父节点
当前提交
be50d30f27
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      SMBLibrary/Server/SMB2/CloseHelper.cs

+ 1 - 1
SMBLibrary/Server/SMB2/CloseHelper.cs

@@ -27,7 +27,7 @@ namespace SMBLibrary.Server.SMB2
             CloseResponse response = new CloseResponse();
             if (request.PostQueryAttributes)
             {
-                FileNetworkOpenInformation fileInfo = NTFileStoreHelper.GetNetworkOpenInformation(share.FileStore, openFile.Path);
+                FileNetworkOpenInformation fileInfo = NTFileStoreHelper.GetNetworkOpenInformation(share.FileStore, openFile.Path, session.SecurityContext);
                 if (fileInfo != null)
                 {
                     response.CreationTime = fileInfo.CreationTime;