mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 09:46:17 +01: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:
parent
9208517188
commit
e1d80e9f7c
@ -1,3 +1,9 @@
|
||||
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)
|
||||
|
||||
2006-05-02 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.11.0 ===
|
||||
|
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user