summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectextendinformation.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-16 00:24:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-16 00:24:49 +0000
commita0323a9f8f673f2b4d7a70e2019fa47d3df76d96 (patch)
tree86f72a2427700fa35af175738c9efb404fae2e96 /cpukit/score/src/objectextendinformation.c
parent2011-02-15 Jennifer Averett (diff)
downloadrtems-a0323a9f8f673f2b4d7a70e2019fa47d3df76d96.tar.bz2
2011-02-15 Joel Sherrill <joel.sherrilL@OARcorp.com>
* libmisc/capture/capture.c, posix/src/keyfreememory.c, posix/src/pthread.c, score/include/rtems/score/wkspace.h, score/src/objectextendinformation.c, score/src/objectnamespaceremove.c, score/src/objectsetname.c, score/src/threadclose.c, score/src/threadinitialize.c, score/src/wkspace.c: Many places were checking for a NULL pointer before calling _Workspace_Free. By moving the check into _Workspace_Free, we eliminate a number of conditional paths and make it harder to return a NULL pointer.
Diffstat (limited to 'cpukit/score/src/objectextendinformation.c')
-rw-r--r--cpukit/score/src/objectextendinformation.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/score/src/objectextendinformation.c b/cpukit/score/src/objectextendinformation.c
index ef10e63947..0839e0f6be 100644
--- a/cpukit/score/src/objectextendinformation.c
+++ b/cpukit/score/src/objectextendinformation.c
@@ -221,8 +221,7 @@ void _Objects_Extend_information(
_ISR_Enable( level );
- if ( old_tables )
- _Workspace_Free( old_tables );
+ _Workspace_Free( old_tables );
block_count++;
}