Skip to content

Commit 89adf14

Browse files
committed
al_run_detached_thread: fix segfault on detaching when the thread is already gone
detached_thread_func_trampoline freed the outer thread at its end. If outer->proc was really fast to finish, _al_thread_detach could get called with &outer->thread as its argument after outer was already freed. Usually it would be fast enough to not ever be overwritten after freeing, but tools like asan explicitly overwrite freed memory, leading to reproducible crash.
1 parent e816710 commit 89adf14

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/threads.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,12 @@ ALLEGRO_THREAD *al_create_thread_with_stacksize(
147147
void al_run_detached_thread(void *(*proc)(void *arg), void *arg)
148148
{
149149
ALLEGRO_THREAD *outer = create_thread();
150+
_AL_THREAD thread;
150151
outer->thread_state = THREAD_STATE_DETACHED;
151152
outer->arg = arg;
152153
outer->proc = proc;
153-
_al_thread_create(&outer->thread, detached_thread_func_trampoline, outer);
154-
_al_thread_detach(&outer->thread);
154+
_al_thread_create(&thread, detached_thread_func_trampoline, outer);
155+
_al_thread_detach(&thread);
155156
}
156157

157158

0 commit comments

Comments
 (0)