dll: FspMountSet_MountmgrDirectory: bug fix

This commit is contained in:
Bill Zissimopoulos 2022-06-29 15:30:36 +01:00
parent f1cfe758ec
commit 5483dcbd73

View File

@ -141,6 +141,12 @@ static NTSTATUS FspMountSet_MountmgrDirectory(HANDLE VolumeHandle, PWSTR VolumeN
{
/* use MountManager from FSD and exit */
Result = FspFsctlUseMountmgr(VolumeHandle, MountPoint + 4);
if (!NT_SUCCESS(Result))
goto exit;
*PMountHandle = MountHandle;
Result = STATUS_SUCCESS;
goto exit;
}