[RDBSS] Avoid uninit var usage.

CID 1419475
This commit is contained in:
Pierre Schweitzer 2017-10-11 08:20:48 +02:00
parent 74cc91524a
commit 151869c6ef

View file

@ -1052,6 +1052,9 @@ RxCancelNotifyChangeDirectoryRequestsForVNetRoot(
/* Lock our list lock */
KeAcquireSpinLock(&RxStrucSupSpinLock, &OldIrql);
/* Assume success */
Status = STATUS_SUCCESS;
/* Now, browse all the active contexts, to find the associated ones */
Entry = RxActiveContexts.Flink;
while (Entry != &RxActiveContexts)