This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(perl #131665) avoid a buffer overflow in a buffer we didn't need
[perl5.git] / dump.c
diff --git a/dump.c b/dump.c
index 1628ca3..a2c0bbc 100644 (file)
--- a/dump.c
+++ b/dump.c
@@ -1840,7 +1840,7 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo
             }
            Perl_dump_indent(aTHX_ level, file, "  CUR = %" IVdf "\n", (IV)SvCUR(sv));
            if (re && type == SVt_PVLV)
-                /* LV-as-REGEXP usurps len field to store poiunter to
+                /* LV-as-REGEXP usurps len field to store pointer to
                  * regexp struct */
                Perl_dump_indent(aTHX_ level, file, "  REGEXP = 0x%" UVxf "\n",
                    PTR2UV(((XPV*)SvANY(sv))->xpv_len_u.xpvlenu_rx));