Changeset cb87694 in rtems
- Timestamp:
- Jul 25, 2010, 2:52:27 PM (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 972a8dba
- Parents:
- a5bbb061
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
ra5bbb061 rcb87694 1 2010-07-25 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libcsupport/src/gxx_wrappers.c: Free contents of key not key itself. 4 Kye pointer will never be malloc'ed. 5 1 6 2010-07-24 Joel Sherrill <joel.sherrill@oarcorp.com> 2 7 -
cpukit/libcsupport/src/gxx_wrappers.c
ra5bbb061 rcb87694 123 123 if ( status == RTEMS_SUCCESSFUL ) { 124 124 /* Hmm - hopefully all tasks using this key have gone away... */ 125 if ( key ) free( (void *)key ); 126 return 0; 127 } 125 if ( key ) free( *(void **)key ); 126 return 0; 127 } 128 key = NULL; 128 129 return 0; 129 130 }
Note: See TracChangeset
for help on using the changeset viewer.