From: Jarkko Hietaniemi Date: Sat, 23 Mar 2002 01:14:24 +0000 (+0000) Subject: Purify: Unitialized memory read. Too many code paths X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=934abaf167adb702576b251f37fdd3e89d62e20b;p=p5sagit%2Fp5-mst-13.2.git Purify: Unitialized memory read. Too many code paths to keep track of, I guess. p4raw-id: //depot/perl@15436 --- diff --git a/sv.c b/sv.c index 21de7ed..4ea3936 100644 --- a/sv.c +++ b/sv.c @@ -7837,7 +7837,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV SV *vecsv; U8 *vecstr = Null(U8*); STRLEN veclen = 0; - char c; + char c = 0; int i; unsigned base = 0; IV iv = 0;