2010-07-25 Joel Sherrill <joel.sherrill@oarcorp.com>

* libcsupport/src/gxx_wrappers.c: Free contents of key not key itself.
	Kye pointer will never be malloc'ed.
This commit is contained in:
Joel Sherrill
2010-07-25 14:52:27 +00:00
parent a5bbb06141
commit cb87694407
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2010-07-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/gxx_wrappers.c: Free contents of key not key itself.
Kye pointer will never be malloc'ed.
2010-07-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/Makefile.am, libcsupport/src/termios_baud2num.c,
+2 -1
View File
@@ -122,9 +122,10 @@ int rtems_gxx_key_delete (__gthread_key_t key)
status = rtems_task_variable_delete( RTEMS_SELF, (void **)key );
if ( status == RTEMS_SUCCESSFUL ) {
/* Hmm - hopefully all tasks using this key have gone away... */
if ( key ) free( (void *)key );
if ( key ) free( *(void **)key );
return 0;
}
key = NULL;
return 0;
}