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-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 ===
}
} while (some_data_non_null);
- g_free (array);
+ free (array);
win32_check_for_error (TlsSetValue (g_private_tls, NULL));
}