From 2b9f8ae98602d2abda7c363900f39a5bd3768a4c Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 11 Aug 2016 21:32:59 -0700 Subject: 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 Reviewed-by: Peter Hutterer --- mi/mieq.c | 1 - 1 file changed, 1 deletion(-) diff --git a/mi/mieq.c b/mi/mieq.c index 05447d647..e31e4f125 100644 --- a/mi/mieq.c +++ b/mi/mieq.c @@ -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; -- cgit v1.2.3