Skip to content
Snippets Groups Projects
Commit c5b6526a authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*added bugfix provided by Miller Puckette

parent c70f0e5e
No related branches found
No related tags found
No related merge requests found
......@@ -879,12 +879,13 @@ void sys_unqueuegui(void *client)
t_guiqueue *gq, *gq2;
if (!sys_guiqueuehead)
return;
if (sys_guiqueuehead->gq_client == client)
while (sys_guiqueuehead->gq_client == client)
{
t_freebytes(sys_guiqueuehead, sizeof(*sys_guiqueuehead));
sys_guiqueuehead = 0;
gq = sys_guiqueuehead;
sys_guiqueuehead = sys_guiqueuehead->gq_next;
t_freebytes(gq, sizeof(*gq));
}
else for (gq = sys_guiqueuehead; gq2 = gq->gq_next; gq = gq2)
for (gq = sys_guiqueuehead; gq2 = gq->gq_next; gq = gq2)
if (gq2->gq_client == client)
{
gq->gq_next = gq2->gq_next;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment