mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[NTVDM]
don't try to deference an uninitialized Timer svn path=/trunk/; revision=67557
This commit is contained in:
parent
4e51a1b77e
commit
5324112cdb
1 changed files with 6 additions and 2 deletions
|
@ -188,8 +188,12 @@ VOID SetHardwareTimerDelay(PHARDWARE_TIMER Timer, ULONGLONG NewDelay)
|
|||
|
||||
VOID DestroyHardwareTimer(PHARDWARE_TIMER Timer)
|
||||
{
|
||||
if (Timer->Flags & HARDWARE_TIMER_ENABLED) RemoveEntryList(&Timer->Link);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, Timer);
|
||||
if (Timer)
|
||||
{
|
||||
if (Timer->Flags & HARDWARE_TIMER_ENABLED) RemoveEntryList(&Timer->Link);
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, Timer);
|
||||
Timer = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
BOOLEAN ClockInitialize(VOID)
|
||||
|
|
Loading…
Reference in a new issue