Commit 80d161af by Alan Mishchenko

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

parent 3fed7768
......@@ -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*************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment