]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed two uninitialized-data bugs.
authorBen Gras <ben@minix3.org>
Mon, 18 Jul 2005 13:44:39 +0000 (13:44 +0000)
committerBen Gras <ben@minix3.org>
Mon, 18 Jul 2005 13:44:39 +0000 (13:44 +0000)
commands/simple/hostaddr.c
commands/simple/install.c

index 7f02b4f2ff5e5b9fbc2c0a3d44098409d7e639af..b0a0eb62923db8e076f00e77f78dfdb600c11a68 100755 (executable)
@@ -59,7 +59,7 @@ char *argv[];
        first_print= 1;
        prog_name= argv[0];
 
-       a_flag= e_flag= i_flag= 0;
+       a_flag= e_flag= h_flag = i_flag= 0;
        E_arg= I_arg= NULL;
 
        while((c= getopt(argc, argv, "?aheE:iI:")) != -1)
index 894791659375cafde5e2c6c9a783d88ebf8079b5..b167195e2c44e188bf4ee8da0484f1223cac5c27 100755 (executable)
@@ -209,8 +209,8 @@ void copylink(char *source, char *dest, int mode, int owner, int group)
        int r, same= 0, change= 0, docopy= 1;
        char buf[4096];
 #      define hdr ((struct exec *) buf)
-       pid_t pid;
-       int status;
+       pid_t pid = 0;
+       int status = 0;
 
        /* Source must exist as a plain file, dest may exist as a plain file. */