From: Steve Peters Date: Thu, 3 Nov 2005 17:14:17 +0000 (+0000) Subject: Missing va_end(args) from SA_SIGINFO related code. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b4552a27c5bde2b942c656d09569805009152afb;p=p5sagit%2Fp5-mst-13.2.git Missing va_end(args) from SA_SIGINFO related code. p4raw-id: //depot/perl@25976 --- diff --git a/mg.c b/mg.c index 31df285..d677e44 100644 --- a/mg.c +++ b/mg.c @@ -2741,6 +2741,8 @@ Perl_sighandler(int sig) PUSHs((SV*)rv); PUSHs(newSVpv((void*)sip, sizeof(*sip))); } + + va_end(args); } } #endif