From db8ac721998ef6bca77ec5bf8b2d561862c6dd62 Mon Sep 17 00:00:00 2001 From: Brian Taylor Date: Sun, 25 Jun 2023 08:42:31 -0700 Subject: [PATCH] The CONTACT statement does not apply to 1D devices. --- src/ciderlib/oned/onedest.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/ciderlib/oned/onedest.c b/src/ciderlib/oned/onedest.c index 90ee0cc81..9b1bba8b4 100644 --- a/src/ciderlib/oned/onedest.c +++ b/src/ciderlib/oned/onedest.c @@ -77,15 +77,6 @@ ONEdestroy(ONEdevice *pDevice) } } - if (pDevice->pFirstContact) { - struct sONEcontact* pFCtmp = pDevice->pFirstContact; - while (pFCtmp) { - struct sONEcontact* pFCtmpnext = pFCtmp->next; - FREE(pFCtmp); - pFCtmp = pFCtmpnext; - } - } - if (pDevice->pStats) { FREE(pDevice->pStats); }