Skip to content

Commit

Permalink
system: Bring in vrte changes to zero initialize configuration variables
Browse files Browse the repository at this point in the history
Signed-off-by: Mohammad Ayaz <[email protected]>
  • Loading branch information
Mohammad Ayaz authored and michael-methner committed Aug 10, 2023
1 parent ed95742 commit 2abaf86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/system/dlt-system-options.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/*******************************************************************************
** **
** SRC-MODULE: dlt-system-options.c **
** SRC-MODULE: dlt-system-options.c **
** **
** TARGET : linux **
** **
Expand Down
4 changes: 2 additions & 2 deletions src/system/dlt-system.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ DLT_DECLARE_CONTEXT(dltsystem)

int main(int argc, char *argv[])
{
DltSystemCliOptions options;
DltSystemConfiguration config;
DltSystemCliOptions options = {0};
DltSystemConfiguration config = {0};

#if defined(DLT_SYSTEMD_WATCHDOG_ENABLE) || defined(DLT_SYSTEMD_ENABLE)
int ret;
Expand Down

0 comments on commit 2abaf86

Please sign in to comment.