2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>

* libcsupport/src/malloc.c: Do not assert on free of bad pointer.
This commit is contained in:
Joel Sherrill
2007-11-26 21:13:02 +00:00
parent 3a9e70c16b
commit 8802a9b3d1
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/malloc.c: Do not assert on free of bad pointer.
2007-11-26 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/include/rtems/score/thread.h: Fix spelling error.

View File

@@ -27,7 +27,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <assert.h>
#include <errno.h>
#include <string.h>
@@ -493,8 +492,11 @@ void free(
#endif
if ( !_Protected_heap_Free( &RTEMS_Malloc_Heap, ptr ) ) {
errno = EINVAL;
assert( 0 );
printk( "Program heap: free of bad pointer %p -- range %p - %p \n",
ptr,
RTEMS_Malloc_Heap.start,
RTEMS_Malloc_Heap.end
);
}
}