mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-03 14:23:07 +02:00
prevent linking a freed GThread structure into global thread list in error
Mon Aug 13 14:18:22 2007 Tim Janik <timj@imendio.com> * glib/gthread.c (g_thread_create_full): prevent linking a freed GThread structure into global thread list in error cases. svn path=/trunk/; revision=5697
This commit is contained in:
parent
145e79fb4a
commit
8aa559d72f
@ -1,3 +1,8 @@
|
|||||||
|
Mon Aug 13 14:18:22 2007 Tim Janik <timj@imendio.com>
|
||||||
|
|
||||||
|
* glib/gthread.c (g_thread_create_full): prevent linking a freed
|
||||||
|
GThread structure into global thread list in error cases.
|
||||||
|
|
||||||
2007-08-08 Matthias Clasen <mclasen@redhat.com>
|
2007-08-08 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gmarkup.c (append_escaped_text): Handle restricted
|
* glib/gmarkup.c (append_escaped_text): Handle restricted
|
||||||
|
@ -662,8 +662,11 @@ g_thread_create_full (GThreadFunc func,
|
|||||||
G_THREAD_UF (thread_create, (g_thread_create_proxy, result,
|
G_THREAD_UF (thread_create, (g_thread_create_proxy, result,
|
||||||
stack_size, joinable, bound, priority,
|
stack_size, joinable, bound, priority,
|
||||||
&result->system_thread, &local_error));
|
&result->system_thread, &local_error));
|
||||||
|
if (!local_error)
|
||||||
|
{
|
||||||
result->next = g_thread_all_threads;
|
result->next = g_thread_all_threads;
|
||||||
g_thread_all_threads = result;
|
g_thread_all_threads = result;
|
||||||
|
}
|
||||||
G_UNLOCK (g_thread);
|
G_UNLOCK (g_thread);
|
||||||
|
|
||||||
if (local_error)
|
if (local_error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user