From: Nicholas Clark Date: Sat, 29 Nov 2003 14:44:56 +0000 (+0000) Subject: Silence gcc 2.95 warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5637b936cb148bd00c5ba537226e6be70c258de5;p=p5sagit%2Fp5-mst-13.2.git Silence gcc 2.95 warning (Its trace flow isn't good enough to realise that there is no problem) p4raw-id: //depot/perl@21805 --- diff --git a/pp_hot.c b/pp_hot.c index 0bcb7bd..efc7a27 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -967,7 +967,8 @@ PP(pp_aassign) I32 i; int magic; int duplicates = 0; - SV **firsthashrelem; + SV **firsthashrelem = 0; /* "= 0" keeps gcc 2.95 quiet */ + PL_delaymagic = DM_DELAY; /* catch simultaneous items */ gimme = GIMME_V;