diff options
author | Tony Cook <tony@develop-help.com> | 2012-11-14 10:44:25 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2012-11-14 10:44:25 +1100 |
commit | 77c1c05b5b14ff77bfd04f3859d90923b54b762e (patch) | |
tree | 59001915baff79ae23b132e39ff436bbb16a4687 /util.c | |
parent | fdf1a9252c27dbcbfdeb78f1b744a5031b699ed4 (diff) | |
download | perl-77c1c05b5b14ff77bfd04f3859d90923b54b762e.tar.gz |
dTHX implies dVAR, using both fails to build under -DPERL_GLOBAL_STRUCT
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1626,7 +1626,7 @@ void Perl_croak_no_mem() { dTHX; - dVAR; + /* Can't use PerlIO to write as it allocates memory */ PerlLIO_write(PerlIO_fileno(Perl_error_log), PL_no_mem, sizeof(PL_no_mem)-1); |