]> git.marmaro.de Git - mmh/commitdiff
Fixed a possible uninitialized variable access.
authormarkus schnalke <markus.schnalke@la-bw.de>
Thu, 20 Nov 2014 09:57:46 +0000 (10:57 +0100)
committermarkus schnalke <markus.schnalke@la-bw.de>
Thu, 20 Nov 2014 09:57:46 +0000 (10:57 +0100)
(Thanks to the compiler for reporting.)

uip/whom.c

index 8ffe8b83b6f402ecd8a0d61b4d995b98b6d647f2..57fddc8eda1f889fe9e317cf619289215ce9c2f6 100644 (file)
@@ -173,7 +173,7 @@ static int
 process(char *file)
 {
         int state, compnum;
-       char *cp;
+       char *cp = NULL;
        char buf[BUFSIZ], name[NAMESZ];
        FILE *in;