Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wynn
purr-data
Commits
c5b6526a
Commit
c5b6526a
authored
Dec 10, 2014
by
Ivica Bukvic
Browse files
*added bugfix provided by Miller Puckette
parent
c70f0e5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/s_inter.c
View file @
c5b6526a
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment