From a2de82afa932c43f299ad145197f5ad88006fb17 Mon Sep 17 00:00:00 2001 From: David Herceg Date: Wed, 1 Jul 2026 17:54:45 +0000 Subject: [PATCH] Issue 255: Releasing table address prior to issuing a table manage command in the SAMPLE_APP_SendHkCmd() function. --- fsw/src/sample_app_cmds.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fsw/src/sample_app_cmds.c b/fsw/src/sample_app_cmds.c index 66bdc5d..388fd32 100644 --- a/fsw/src/sample_app_cmds.c +++ b/fsw/src/sample_app_cmds.c @@ -65,6 +65,7 @@ CFE_Status_t SAMPLE_APP_SendHkCmd(const SAMPLE_APP_SendHkCmd_t *Msg) */ for (i = 0; i < SAMPLE_APP_PLATFORM_NUMBER_OF_TABLES; i++) { + CFE_TBL_ReleaseAddress(SAMPLE_APP_Data.TblHandles[i]); CFE_TBL_Manage(SAMPLE_APP_Data.TblHandles[i]); }