From: Jarkko Hietaniemi Date: Mon, 15 Jul 2002 13:35:49 +0000 (+0000) Subject: Squash "uninitialized" warning from gcc. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=81f715daf2c37c03f5bb190d30feffc508b4a5e8;p=p5sagit%2Fp5-mst-13.2.git Squash "uninitialized" warning from gcc. p4raw-id: //depot/perl@17548 --- diff --git a/sv.c b/sv.c index 11b53d9..93e7bb5 100644 --- a/sv.c +++ b/sv.c @@ -7734,7 +7734,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV /* large enough for "%#.#f" --chip */ /* what about long double NVs? --jhi */ - SV *vecsv; + SV *vecsv = Nullsv; U8 *vecstr = Null(U8*); STRLEN veclen = 0; char c = 0;