Use ExFreePoolWithTag instead of ExFreePool in SpiNotifyNCMetricsChanged.
Fixes CID 716644

svn path=/trunk/; revision=57502
This commit is contained in:
Timo Kreuzer 2012-10-06 19:24:14 +00:00
parent 56a85aba5e
commit 39cb83bab8

View file

@ -741,7 +741,7 @@ SpiNotifyNCMetricsChanged()
UserDerefObjectCo(pwndCurrent); UserDerefObjectCo(pwndCurrent);
} }
ExFreePool(ahwnd); ExFreePoolWithTag(ahwnd, USERTAG_WINDOWLIST);
return TRUE; return TRUE;
} }