From: markus schnalke Date: Thu, 20 Nov 2014 09:57:46 +0000 (+0100) Subject: Fixed a possible uninitialized variable access. X-Git-Tag: mmh-0.2-RC1~99^2~2 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=a72c94d4e0c02b5095ca6798de2474768490ef94 Fixed a possible uninitialized variable access. (Thanks to the compiler for reporting.) --- diff --git a/uip/whom.c b/uip/whom.c index 8ffe8b8..57fddc8 100644 --- a/uip/whom.c +++ b/uip/whom.c @@ -173,7 +173,7 @@ static int process(char *file) { int state, compnum; - char *cp; + char *cp = NULL; char buf[BUFSIZ], name[NAMESZ]; FILE *in;