This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Missing aTHX_
authorNick Ing-Simmons <nik@tiuk.ti.com>
Sun, 19 Nov 2000 16:57:14 +0000 (16:57 +0000)
committerNick Ing-Simmons <nik@tiuk.ti.com>
Sun, 19 Nov 2000 16:57:14 +0000 (16:57 +0000)
p4raw-id: //depot/perlio@7750

sv.c

diff --git a/sv.c b/sv.c
index e193bc5..7a6085a 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -4006,7 +4006,7 @@ Perl_sv_len_utf8(pTHX_ register SV *sv)
        STRLEN len;
        U8 *s = (U8*)SvPV(sv, len);
 
-       return Perl_utf8_length(s, s + len);
+       return Perl_utf8_length(aTHX_ s, s + len);
     }
 }