From 376cb8859f302b2b1bb93e689e5859d863446ab2 Mon Sep 17 00:00:00 2001 From: Liryna Date: Sun, 6 Feb 2022 12:27:50 -0500 Subject: [PATCH] Library - Revert doc change 229ae1a859ddd04669257352df6496b3909991d4 --- dokan/dokan.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dokan/dokan.c b/dokan/dokan.c index 33285b33..4fd74da8 100644 --- a/dokan/dokan.c +++ b/dokan/dokan.c @@ -545,8 +545,7 @@ VOID CALLBACK DispatchCallback(PTP_CALLBACK_INSTANCE Instance, PVOID Parameter, --eventContextBatchCount; // It is unsafe to access the context from here after Queuing the event. context = (PEVENT_CONTEXT)((PCHAR)(context) + context->Length); - // 4 - All batched events are dispatched to the thread pool except the last event - // that is executed on the current thread if we are not the main pull thread. + // 4 - All batched events are dispatched to the thread pool except the last event that is executed on the current thread. // Note: Single thread mode has batching disabled and therefore only has one event which is executed on the main thread. if (eventContextBatchCount) { QueueIoEvent(ioEvent);