sysusers: initialize r

Needed for the stdin case where it could otherwise end up being used
uninitialized.
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2014-08-19 23:27:44 +02:00
parent 5f02e26ca7
commit c46409021f
1 changed files with 1 additions and 1 deletions

View File

@ -1693,7 +1693,7 @@ static int read_config_file(const char *fn, bool ignore_enoent) {
FILE *f = NULL;
char line[LINE_MAX];
unsigned v = 0;
int r;
int r = 0;
assert(fn);