diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2012-11-05 02:19:29 -0500 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2012-11-08 16:54:56 -0800 |
commit | dbf7dff66e440223aca0cc87655e65e096264d59 (patch) | |
tree | 114e652e01f7ab1861e2abf88de8d086a8ccdb34 /util.c | |
parent | 94f1727772e0683d79e2101f4dc93ac2ef282c4c (diff) | |
download | perl-dbf7dff66e440223aca0cc87655e65e096264d59.tar.gz |
remove various redundant dTHXes
Remove either unused dTHXes, or remove dTHXes where a nocontext func can
be used instead. Smaller/faster machine code is the result.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -5989,7 +5989,6 @@ getting C<vsnprintf>. int Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) { - dTHX; int retval; va_list ap; PERL_ARGS_ASSERT_MY_SNPRINTF; @@ -6008,7 +6007,7 @@ Perl_my_snprintf(char *buffer, const Size_t len, const char *format, ...) (len > 0 && (Size_t)retval >= len) #endif ) - Perl_croak(aTHX_ "panic: my_snprintf buffer overflow"); + Perl_croak_nocontext("panic: my_snprintf buffer overflow"); return retval; } @@ -6026,7 +6025,6 @@ C<sv_vcatpvf> instead, or getting C<vsnprintf>. int Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap) { - dTHX; int retval; #ifdef NEED_VA_COPY va_list apc; @@ -6054,7 +6052,7 @@ Perl_my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap (len > 0 && (Size_t)retval >= len) #endif ) - Perl_croak(aTHX_ "panic: my_vsnprintf buffer overflow"); + Perl_croak_nocontext("panic: my_vsnprintf buffer overflow"); return retval; } |