summaryrefslogtreecommitdiffstats
path: root/src/temp/rwt
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2006-07-23 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2006-07-23 08:01:00 -0700
commit7e8e03206c56e7cd9d0d9fbb447c785c400ff3ee (patch)
tree9d31935cf6c27b36c3ceb57cb5cffe2577a569a7 /src/temp/rwt
parent616bb095f10c24f1f720efe89b7f39c670d114a3 (diff)
downloadabc-7e8e03206c56e7cd9d0d9fbb447c785c400ff3ee.tar.gz
abc-7e8e03206c56e7cd9d0d9fbb447c785c400ff3ee.tar.bz2
abc-7e8e03206c56e7cd9d0d9fbb447c785c400ff3ee.zip
Version abc60723
Diffstat (limited to 'src/temp/rwt')
-rw-r--r--src/temp/rwt/rwtMan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/temp/rwt/rwtMan.c b/src/temp/rwt/rwtMan.c
index 5f077c8d..f7dd38a7 100644
--- a/src/temp/rwt/rwtMan.c
+++ b/src/temp/rwt/rwtMan.c
@@ -64,10 +64,10 @@ void Rwt_ManGlobalStart()
***********************************************************************/
void Rwt_ManGlobalStop()
{
- if ( s_puCanons == NULL ) free( s_puCanons );
- if ( s_pPhases == NULL ) free( s_pPhases );
- if ( s_pPerms == NULL ) free( s_pPerms );
- if ( s_pMap == NULL ) free( s_pMap );
+ FREE( s_puCanons );
+ FREE( s_pPhases );
+ FREE( s_pPerms );
+ FREE( s_pMap );
}
/**Function*************************************************************