Initialize some of uninitialized variables
[khatus.git] / x5 / khatus.c
index 3897b87..d14c7d4 100644 (file)
@@ -228,7 +228,7 @@ opts_parse_any(Config *cfg, int argc, char *argv[], int i)
 }
 
 void
-opts_parse(Config *cfg, int argc, char *argv[], int i)
+opts_parse(Config *cfg, int argc, char *argv[])
 {
        opts_parse_any(cfg, argc, argv, 1);
 
@@ -268,7 +268,7 @@ void
 read_all(Config *cfg, char *buf)
 {
        fd_set fds;
-       int maxfd;
+       int maxfd = -1;
        int ready;
        struct stat st;
 
@@ -313,11 +313,11 @@ main(int argc, char *argv[])
        int prefix = 0;
        char *buf;
        Config *cfg = &defaults;
-       Display *display;
+       Display *display = NULL;
 
        argv0 = argv[0];
 
-       opts_parse(cfg, argc, argv, 1);
+       opts_parse(cfg, argc, argv);
        debug("argv0 = %s\n", argv0);
        config_print(cfg);
        if (cfg->files == NULL)
This page took 0.022894 seconds and 4 git commands to generate.