mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-09 20:35:49 +01:00
Use g_free instead of free. Pointed out by Sam O'Connor <sam@panviva.com>.
2002-01-16 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * gthread-posix.c: Use g_free instead of free. Pointed out by Sam O'Connor <sam@panviva.com>.
This commit is contained in:
parent
57638c1c5f
commit
926d797b59
@ -1,3 +1,8 @@
|
|||||||
|
2002-01-16 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
|
* gthread-posix.c: Use g_free instead of free. Pointed out by Sam
|
||||||
|
O'Connor <sam@panviva.com>.
|
||||||
|
|
||||||
2001-10-23 Tor Lillqvist <tml@iki.fi>
|
2001-10-23 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* Makefile.am: (Win32): If we have built the MSVC import library,
|
* Makefile.am: (Win32): If we have built the MSVC import library,
|
||||||
|
@ -77,7 +77,7 @@ static void
|
|||||||
g_mutex_free_solaris_impl (GMutex * mutex)
|
g_mutex_free_solaris_impl (GMutex * mutex)
|
||||||
{
|
{
|
||||||
solaris_check_for_error (mutex_destroy ((mutex_t *) mutex));
|
solaris_check_for_error (mutex_destroy ((mutex_t *) mutex));
|
||||||
free (mutex);
|
g_free (mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
|
/* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
|
||||||
|
Loading…
x
Reference in New Issue
Block a user