mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[PORTCLS]
- Fix possible dereferencing of null pointer - Found by Amine Khaldi svn path=/trunk/; revision=44545
This commit is contained in:
parent
c0d4619777
commit
1caea1d387
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ DumpFilterDescriptor(
|
||||||
RtlStringFromGUID(*EventItem->Set, &GuidString);
|
RtlStringFromGUID(*EventItem->Set, &GuidString);
|
||||||
DPRINT1("EventIndex %u GUID %S Id %u Flags %x\n", Index, GuidString.Buffer, EventItem->Id, EventItem->Flags);
|
DPRINT1("EventIndex %u GUID %S Id %u Flags %x\n", Index, GuidString.Buffer, EventItem->Id, EventItem->Flags);
|
||||||
|
|
||||||
EventItem = (PPCEVENT_ITEM)((ULONG_PTR)EventItem + FilterDescription->AutomationTable->EventItemSize);
|
EventItem = (PPCEVENT_ITEM)((ULONG_PTR)EventItem + NodeDescriptor->AutomationTable->EventItemSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue