mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-21 20:26:45 +00:00
xkb: remove _XkbAlloc, _XkbCalloc, _XkbRealloc and _XkbFree
We all agree that wrapping is fun, but seriously. One of these days someone will get hurt. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
0e31d3906d
commit
5cf7018381
11 changed files with 136 additions and 140 deletions
|
|
@ -1136,7 +1136,7 @@ ClientPtr client = NULL;
|
|||
autoCtrls= interest->autoCtrls;
|
||||
autoValues= interest->autoCtrlValues;
|
||||
client= interest->client;
|
||||
_XkbFree(interest);
|
||||
xfree(interest);
|
||||
found= True;
|
||||
}
|
||||
while ((!found)&&(interest->next)) {
|
||||
|
|
@ -1146,7 +1146,7 @@ ClientPtr client = NULL;
|
|||
autoCtrls= victim->autoCtrls;
|
||||
autoValues= victim->autoCtrlValues;
|
||||
client= victim->client;
|
||||
_XkbFree(victim);
|
||||
xfree(victim);
|
||||
found= True;
|
||||
}
|
||||
interest = interest->next;
|
||||
|
|
|
|||
Loading…
Reference in a new issue