In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/abb9aadc729e283764df9f7ac23799e957287bc7?hp=4c821bdad549847bbb50929bc86cc3baa3676829>
- Log ----------------------------------------------------------------- commit abb9aadc729e283764df9f7ac23799e957287bc7 Author: Jim Cromie <jim.cro...@gmail.com> Date: Fri Jun 29 20:26:21 2018 -0600 fix stren in PERL_MEM_LOG builds ----------------------------------------------------------------------- Summary of changes: util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index 53fa197b60..9d3f5ba0f1 100644 --- a/util.c +++ b/util.c @@ -4761,7 +4761,7 @@ S_mem_log_common(enum mem_log_type mlt, const UV n, * timeval. */ { STRLEN len; - const char* endptr = pmlenv + stren(pmlenv); + const char* endptr = pmlenv + strlen(pmlenv); int fd; UV uv; if (grok_atoUV(pmlenv, &uv, &endptr) /* Ignore endptr. */ -- Perl5 Master Repository