diff options
Diffstat (limited to 'src/bdd/reo/reoUnits.c')
-rw-r--r-- | src/bdd/reo/reoUnits.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bdd/reo/reoUnits.c b/src/bdd/reo/reoUnits.c index 70be8b82..7e57ff35 100644 --- a/src/bdd/reo/reoUnits.c +++ b/src/bdd/reo/reoUnits.c @@ -97,7 +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) ); +// memset( pPlane, 0, sizeof(reo_plane) ); + pPlane->pHead = NULL; } /**Function************************************************************* |