Initialize variables before usage.

Found by:	clang static analyzer
Found by:	Coverity Prevent[tm] (CID 7736, 7760)
This commit is contained in:
Ulrich Spörlein 2010-06-11 17:02:57 +00:00
parent e762f66672
commit ee4912eb07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209051
2 changed files with 2 additions and 0 deletions

View file

@ -394,6 +394,7 @@ load_format(const char *pagedb_path, int page)
SLIST_INIT(&namelist);
c = '\0';
depth = 0;
lineno = 0;
found = 0;

View file

@ -644,6 +644,7 @@ gvinum_detach(int argc, char **argv)
struct gctl_req *req;
int flags, i;
flags = 0;
optreset = 1;
optind = 1;
while ((i = getopt(argc, argv, "f")) != -1) {