summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/bdd/reo/reoUnits.c4
1 files changed, 2 insertions, 2 deletions
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*************************************************************