* score/src/wkspace.c: Removed NULL pointer check from
	_Workspace_Free().
This commit is contained in:
Sebastian Huber
2011-02-16 07:37:35 +00:00
parent a0323a9f8f
commit 8249054539
2 changed files with 6 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-02-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/src/wkspace.c: Removed NULL pointer check from
_Workspace_Free().
2011-02-15 Joel Sherrill <joel.sherrilL@OARcorp.com>
* libmisc/capture/capture.c, posix/src/keyfreememory.c,
+1 -2
View File
@@ -91,8 +91,7 @@ void _Workspace_Free(
__builtin_return_address( 1 )
);
#endif
if (block)
_Heap_Free( &_Workspace_Area, block );
_Heap_Free( &_Workspace_Area, block );
}
/*