mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[WIN32K]
Use ExFreePoolWithTag instead of ExFreePool in SpiNotifyNCMetricsChanged. Fixes CID 716644 svn path=/trunk/; revision=57502
This commit is contained in:
parent
56a85aba5e
commit
39cb83bab8
1 changed files with 1 additions and 1 deletions
|
@ -741,7 +741,7 @@ SpiNotifyNCMetricsChanged()
|
||||||
UserDerefObjectCo(pwndCurrent);
|
UserDerefObjectCo(pwndCurrent);
|
||||||
}
|
}
|
||||||
|
|
||||||
ExFreePool(ahwnd);
|
ExFreePoolWithTag(ahwnd, USERTAG_WINDOWLIST);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue