From: Jarkko Hietaniemi Date: Sun, 20 Aug 2000 19:42:01 +0000 (+0000) Subject: pp_open() could pass an uninitialized filename down to do_open9(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6aa016ca806d78082f3fdac943515dc35707c664;p=p5sagit%2Fp5-mst-13.2.git pp_open() could pass an uninitialized filename down to do_open9(). p4raw-id: //depot/perl@6720 --- diff --git a/pp_sys.c b/pp_sys.c index 8a77c09..a95c43c 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -508,7 +508,7 @@ PP(pp_open) djSP; dTARGET; GV *gv; SV *sv; - SV *name; + SV *name = Nullsv; I32 have_name = 0; char *tmps; STRLEN len;