Fix return value in winfsp's GetVolumeInfo.

This commit is contained in:
2020-09-03 19:47:32 +01:00
parent 542e741184
commit 57336b7cb4

View File

@@ -126,7 +126,7 @@ namespace RomRepoMgr.Core.Filesystem
volumeInfo.FreeSize = 0;
volumeInfo.TotalSize = totalSize;
return base.GetVolumeInfo(out volumeInfo);
return STATUS_SUCCESS;
}
public override int Open(string fileName, uint createOptions, uint grantedAccess, out object fileNode,