Skip to content

Commit

Permalink
examples/lte_fwupdate: Fix Uninitialized Variable
Browse files Browse the repository at this point in the history
Fix references to uninitialized variable.

Detected by CodeSonar 1465444
  • Loading branch information
SPRESENSE committed Jul 4, 2023
1 parent 4b91b75 commit 6cd8571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/lte_fwupdate/lte_fwupdate_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ int main(int argc, FAR char *argv[])
int injected_size;
lte_version_t version;
int img_size;
char user_resp[32];
char user_resp[32] = {0};

printf("= Alt1250 modem FW update example =\n\n");

Expand Down

0 comments on commit 6cd8571

Please sign in to comment.