From 80d161afaa335c4289e6f7057b6657e660ed87e7 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 2 May 2011 20:51:46 -0700 Subject: Fixing a bug, which was accidentally introduced a few months while debugging Boolean decomposition --- src/bdd/reo/reoUnits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bdd/reo') diff --git a/src/bdd/reo/reoUnits.c b/src/bdd/reo/reoUnits.c index 7e57ff35..151d4cb4 100644 --- a/src/bdd/reo/reoUnits.c +++ b/src/bdd/reo/reoUnits.c @@ -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************************************************************* -- cgit v1.2.3