Fixing a bug, which was accidentally introduced a few months while debugging Boolean decomposition

This commit is contained in:
Alan Mishchenko 2011-05-02 20:51:46 -07:00
parent 3fed776860
commit 80d161afaa
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ void reoUnitsRecycleUnitList( reo_man * p, reo_plane * pPlane )
pTail = pUnit;
pTail->Next = p->pUnitFreeList;
p->pUnitFreeList = pPlane->pHead;
// memset( pPlane, 0, sizeof(reo_plane) );
pPlane->pHead = NULL;
memset( pPlane, 0, sizeof(reo_plane) );
// pPlane->pHead = NULL;
}
/**Function*************************************************************