g_thread_create_full() can dereference NULL pointer

In case of the thread creation failure, and the thread was not created
as joinable, the g_thread_create_full() could dereference a NULL pointer.

https://bugzilla.gnome.org/show_bug.cgi?id=704523
This commit is contained in:
Milan Crha 2013-07-22 09:54:33 +02:00
parent 114b1ccf78
commit 64041ca498

View File

@ -374,7 +374,7 @@ g_thread_create_full (GThreadFunc func,
thread = g_thread_new_internal (NULL, g_deprecated_thread_proxy,
func, data, stack_size, error);
if (!joinable)
if (thread && !joinable)
{
thread->joinable = FALSE;
g_thread_unref (thread);