Skip to content

Commit

Permalink
daemons: common: parse.c, fix coverity detected varible init issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Elder committed Oct 28, 2014
1 parent 49a6543 commit 8fbcadf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemons/common/parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int parse(char *s, int len, struct parse_param *specs, int *err_index)
const char *guard;
unsigned int v_uint;
uint64_t v_uint64;
int result;
int result = 0;
int count = 0;

/* make sure string is null terminated */
Expand Down

0 comments on commit 8fbcadf

Please sign in to comment.