mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-23 02:17:51 +02:00
Free with free() and not g_free() what has been allocated with calloc().
2006-05-03 Tor Lillqvist <tml@novell.com> * gthread-win32.c (g_thread_exit_win32_impl): Free with free() and not g_free() what has been allocated with calloc(). (#340530, Jake Goulding)
This commit is contained in:
committed by
Tor Lillqvist
parent
9208517188
commit
e1d80e9f7c
@@ -443,7 +443,7 @@ g_thread_exit_win32_impl (void)
|
||||
}
|
||||
} while (some_data_non_null);
|
||||
|
||||
g_free (array);
|
||||
free (array);
|
||||
|
||||
win32_check_for_error (TlsSetValue (g_private_tls, NULL));
|
||||
}
|
||||
|
Reference in New Issue
Block a user