sys: mup: correctly handle relative file object chain (#561)

This commit is contained in:
Bill Zissimopoulos 2024-06-20 12:44:35 +01:00
parent b058925692
commit 2bf9a6c16e

View File

@ -250,7 +250,7 @@ NTSTATUS FspMupHandleIrp(
* Every other CREATE request must be forwarded to the appropriate fsvol device. * Every other CREATE request must be forwarded to the appropriate fsvol device.
*/ */
if (0 != FileObject->RelatedFileObject) while (0 != FileObject->RelatedFileObject)
FileObject = FileObject->RelatedFileObject; FileObject = FileObject->RelatedFileObject;
FspFsmupDeviceLockPrefixTable(FsmupDeviceObject); FspFsmupDeviceLockPrefixTable(FsmupDeviceObject);