mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOS:CC] Fix use of uninitialized variable
This commit is contained in:
parent
b0c143c710
commit
cc9607e94e
1 changed files with 4 additions and 4 deletions
|
@ -951,21 +951,21 @@ CcFlushCache (
|
|||
|
||||
if (vacb != NULL)
|
||||
{
|
||||
IO_STATUS_BLOCK VacbIosb;
|
||||
if (vacb->Dirty)
|
||||
{
|
||||
IO_STATUS_BLOCK VacbIosb;
|
||||
Status = CcRosFlushVacb(vacb, &VacbIosb);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
goto quit;
|
||||
}
|
||||
DirtyVacb = TRUE;
|
||||
|
||||
if (IoStatus)
|
||||
IoStatus->Information += VacbIosb.Information;
|
||||
}
|
||||
|
||||
CcRosReleaseVacb(SharedCacheMap, vacb, FALSE, FALSE);
|
||||
|
||||
if (IoStatus)
|
||||
IoStatus->Information += VacbIosb.Information;
|
||||
}
|
||||
|
||||
if (!DirtyVacb)
|
||||
|
|
Loading…
Reference in a new issue