mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:15:39 +00:00
[WIN32K]
use ExFreePoolWithTag instead of ExFreePool svn path=/trunk/; revision=67384
This commit is contained in:
parent
10295ad9df
commit
0a98cc57f4
3 changed files with 4 additions and 4 deletions
|
@ -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*
|
||||||
|
|
|
@ -165,7 +165,7 @@ co_IntSendActivateMessages(PWND WindowPrev, PWND Window, BOOL MouseActivate, BOO
|
||||||
}
|
}
|
||||||
phwndCurrent++;
|
phwndCurrent++;
|
||||||
}
|
}
|
||||||
ExFreePool(phwndTopLevel);
|
ExFreePoolWithTag(phwndTopLevel, USERTAG_WINDOWLIST);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
////
|
////
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue