Skip to content

Commit

Permalink
Initialize Array before used (#1668)
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay authored Sep 26, 2022
1 parent 669d1f6 commit 378e546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Autocoders/Python/test/partition/Top.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ int main(int argc, char* argv[]) {
// Construct the topology here.
constructArchitecture();
// Ask for input to huey or duey here.
char in[80];
char in[80] = {};
U32 cmd;
Fw::String *str;
char str2[80];
Expand Down

0 comments on commit 378e546

Please sign in to comment.