mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-22 15:10:49 +02:00
mi: Remove spurious call to OsReleaseSignals from mieqGrowQueue
This call wasn't converted to 'input_unlock()' when the SIGIO code was removed from the server, and so when the queue growing was reworked to be done from the input thread, it got left sitting here. As the caller now manages the lock, we don't need to switch this to input_unlock at this point. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
f399919e13
commit
2b9f8ae986
1 changed files with 0 additions and 1 deletions
|
|
@ -160,7 +160,6 @@ mieqGrowQueue(EventQueuePtr eventQueue, size_t new_nevents)
|
|||
for (j = 0; j < i; j++)
|
||||
FreeEventList(new_events[j].events, 1);
|
||||
free(new_events);
|
||||
OsReleaseSignals();
|
||||
return FALSE;
|
||||
}
|
||||
new_events[i].events = evlist;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue