use ExFreePoolWithTag instead of ExFreePool

svn path=/trunk/; revision=67384
This commit is contained in:
Christoph von Wittich 2015-04-24 19:24:07 +00:00
parent 10295ad9df
commit 0a98cc57f4
3 changed files with 4 additions and 4 deletions

View file

@ -97,7 +97,7 @@ POLYGONFILL_DestroyEdgeList(FILL_EDGE_LIST* list)
} }
/* /*
** This makes and initiaizes an Edge struct for a line between two points. ** This makes and initializes an Edge struct for a line between two points.
*/ */
static static
FILL_EDGE* FILL_EDGE*

View file

@ -165,7 +165,7 @@ co_IntSendActivateMessages(PWND WindowPrev, PWND Window, BOOL MouseActivate, BOO
} }
phwndCurrent++; phwndCurrent++;
} }
ExFreePool(phwndTopLevel); ExFreePoolWithTag(phwndTopLevel, USERTAG_WINDOWLIST);
} }
} }
//// ////

View file

@ -1520,7 +1520,7 @@ co_IntSendMessageTimeout( HWND hWnd,
} }
} }
ExFreePool(Children); ExFreePoolWithTag(Children, USERTAG_WINDOWLIST);
return (LRESULT) TRUE; return (LRESULT) TRUE;
} }
@ -1888,7 +1888,7 @@ UserSendNotifyMessage( HWND hWnd,
Ret = UserSendNotifyMessage(List[i], Msg, wParam, lParam); Ret = UserSendNotifyMessage(List[i], Msg, wParam, lParam);
} }
ExFreePool(List); ExFreePoolWithTag(List, USERTAG_WINDOWLIST);
} }
} }
else else