mirror of
https://github.com/reactos/reactos.git
synced 2024-11-27 13:33:32 +08:00
[NTOS:CC] Fix use of unintialized variable (caught by RTC1)
This commit is contained in:
parent
184d3a6849
commit
dd08ae2c0f
@ -1045,7 +1045,7 @@ CcFlushCache (
|
||||
{
|
||||
if (vacb->Dirty)
|
||||
{
|
||||
IO_STATUS_BLOCK VacbIosb;
|
||||
IO_STATUS_BLOCK VacbIosb = { 0 };
|
||||
Status = CcRosFlushVacb(vacb, &VacbIosb);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user