On Fri, Sep 23, 2005 at 09:14:09PM +0100, Nicholas Clark wrote: > And between last time and this one I didn't think that there were any > dangerous changes. Given that, and the lack of any helpful log on this > smoke report, I'm stuck as to what I messed up that needs fixing.
I think I failed to spot a change that I needed to integrate. Hopefully 25592 fixes it. I think that Steve Hay's 5.8.7 smoker only works weekdays, so if someone else is able to test build maint on Windows I'd be most grateful. Nicholas Clark Change 25592 by [EMAIL PROTECTED] on 2005/09/24 09:56:14 Integrate: [ 25110] no code before declarations! Affected files ... ... //depot/maint-5.8/perl/doio.c#52 integrate Differences ... ==== //depot/maint-5.8/perl/doio.c#52 (text) ==== @@ -1461,9 +1461,10 @@ Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system"); #else if (sp > mark) { + char **a; + const char *tmps = Nullch; Newx(PL_Argv, sp - mark + 1, char*); - char **a = PL_Argv; - const char *tmps = Nullch; + a = PL_Argv; while (++mark <= sp) { if (*mark) [EMAIL PROTECTED] [perl]$