Skip to content

Commit

Permalink
fix uninitailized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RH-steve-grubb committed Jun 14, 2023
1 parent fd1bb74 commit a643c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/fapolicyd-cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static int do_reload(int code)
}
}

ssize_t ret;
ssize_t ret = 0;
char str[32] = {0};

if (code == DB) {
Expand Down

0 comments on commit a643c50

Please sign in to comment.