This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46c6c7e
)
no code before declarations!
author
Dave Mitchell
<davem@fdisolutions.com>
Sun, 10 Jul 2005 23:04:26 +0000
(23:04 +0000)
committer
Dave Mitchell
<davem@fdisolutions.com>
Sun, 10 Jul 2005 23:04:26 +0000
(23:04 +0000)
p4raw-id: //depot/perl@25110
doio.c
patch
|
blob
|
blame
|
history
diff --git
a/doio.c
b/doio.c
index
0ecfe7d
..
b105845
100644
(file)
--- a/
doio.c
+++ b/
doio.c
@@
-1456,9
+1456,10
@@
Perl_do_aexec5(pTHX_ SV *really, register SV **mark, register SV **sp,
Perl_croak(aTHX_ "exec? I'm not *that* kind of operating system");
#else
if (sp > mark) {
- Newx(PL_Argv, sp - mark + 1, char*);
- char **a = PL_Argv;
+ char **a;
const char *tmps = Nullch;
+ Newx(PL_Argv, sp - mark + 1, char*);
+ a = PL_Argv;
while (++mark <= sp) {
if (*mark)