In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3c7dccdcfcc091f95f9780851606f6ecf9ebf3a9?hp=5ca37d54d00c488ab61212700339a9a1db3441a8>
- Log ----------------------------------------------------------------- commit 3c7dccdcfcc091f95f9780851606f6ecf9ebf3a9 Author: Karl Williamson <[email protected]> Date: Thu Jan 19 13:54:48 2017 -0700 util.c: Allow C backtrace to compile under threads This would not compile due to passing a thread context parameter to Safefree, which isn't expecting it. No claim is made by this commit that it works well under threads. No claim is made in the documentation to that effect either. ----------------------------------------------------------------------- Summary of changes: util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index a1306c6306..a542f5eeb5 100644 --- a/util.c +++ b/util.c @@ -6624,7 +6624,7 @@ Perl_get_c_backtrace_dump(pTHX_ int depth, int skip) sv_catpvs(dsv, "\n"); } - Perl_free_c_backtrace(aTHX_ bt); + Perl_free_c_backtrace(bt); return dsv; } -- Perl5 Master Repository
