From 715fcedb99b837f8ae3322dcb58f7a7a3b09a872 Mon Sep 17 00:00:00 2001 From: Jacob Stiffler Date: Wed, 8 Oct 2014 15:47:35 -0400 Subject: [PATCH] SDOCM00113389: Fix channel free exception. * EdmaMgr_free() was attempting to free the lookup table memroy dispite this being allocated external to EdmaMgr. Signed-off-by: Jacob Stiffler --- packages/ti/sdo/fc/edmamgr/edmamgr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/ti/sdo/fc/edmamgr/edmamgr.c b/packages/ti/sdo/fc/edmamgr/edmamgr.c index eadb2ae..ac90e61 100644 --- a/packages/ti/sdo/fc/edmamgr/edmamgr.c +++ b/packages/ti/sdo/fc/edmamgr/edmamgr.c @@ -385,7 +385,6 @@ int32_t EdmaMgr_free(EdmaMgr_Handle h) chan->chainedChannel = NULL; if ( chan->addrTable.base ) { - EdmaMgr_heap_free(&chan->addrTable, 1); chan->addrTable.base = NULL; chan->addrTable.size = 0; } -- 2.39.2