We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9f4bef commit 92f7d2eCopy full SHA for 92f7d2e
sys/fscontrol.c
@@ -528,6 +528,9 @@ NTSTATUS DokanProcessAndPullEvents(__in PREQUEST_CONTEXT RequestContext) {
528
DOKAN_LOG_FINE_IRP(RequestContext, "No output buffer provided");
529
return status;
530
}
531
+ if (IsUnmountPendingVcb(RequestContext->Vcb)) {
532
+ return STATUS_NO_SUCH_DEVICE;
533
+ }
534
// 3 - Flag the device as having workers starting to pull events.
535
RequestContext->Vcb->HasEventWait = TRUE;
536
0 commit comments