From 8802a9b3d1b603fc3d9339d5d29c955f43470cb4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 26 Nov 2007 21:13:02 +0000 Subject: [PATCH] 2007-11-26 Joel Sherrill * libcsupport/src/malloc.c: Do not assert on free of bad pointer. --- cpukit/ChangeLog | 4 ++++ cpukit/libcsupport/src/malloc.c | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 7926047db4..f4eab759ee 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2007-11-26 Joel Sherrill + + * libcsupport/src/malloc.c: Do not assert on free of bad pointer. + 2007-11-26 Joel Sherrill * score/include/rtems/score/thread.h: Fix spelling error. diff --git a/cpukit/libcsupport/src/malloc.c b/cpukit/libcsupport/src/malloc.c index 7509001e82..4ce197599f 100644 --- a/cpukit/libcsupport/src/malloc.c +++ b/cpukit/libcsupport/src/malloc.c @@ -27,7 +27,6 @@ #include #include #include -#include #include #include @@ -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 + ); } }