mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NTOS:CC] Fix use of unintialized variable (caught by RTC1)
This commit is contained in:
parent
184d3a6849
commit
dd08ae2c0f
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue