Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #59, remove unneeded stack object #60

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions fsw/src/md_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,16 +328,11 @@ CFE_Status_t MD_InitTableServices(void)
uint8 TblIndex;
bool RecoveredValidTable = true; /* for current table */
bool TableInitValidFlag = true; /* for all tables so far*/
MD_DwellTableLoad_t InitMemDwellTable;
MD_DwellTableLoad_t *MD_LoadTablePtr = NULL;
uint16 TblRecos = 0; /* Number of Tables Recovered */
uint16 TblInits = 0; /* Number of Tables Initialized */
MD_DwellTableLoad_t *MD_LoadTablePtr = NULL;
uint16 TblRecos = 0; /* Number of Tables Recovered */
uint16 TblInits = 0; /* Number of Tables Initialized */
char TblFileName[OS_MAX_PATH_LEN];

/* Prepare Data Structure used for loading Initial Table Data */

memset(&InitMemDwellTable, 0, sizeof(InitMemDwellTable));

/*
** For each table, load recovered data if available and valid.
** Otherwise, load initial data.
Expand Down