diff options
author | John P. Linderman <jpl@research.att.com> | 2001-08-31 04:20:35 -0400 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-08-31 11:28:17 +0000 |
commit | 64cc9c1c32ff80fa565521ead90346f994c3e770 (patch) | |
tree | e534e9b54bb4f87074d21771333d1b3984df95b9 /regcomp.c | |
parent | ae80fb0305317cb80a840031917a144cc9dfaf25 (diff) | |
download | perl-64cc9c1c32ff80fa565521ead90346f994c3e770.tar.gz |
Re: Problem in ext/Time/HiRest/HiRes.t
Message-Id: <200108311220.IAA54125@raptor.research.att.com>
Fixes test 14 which could fail randomly in rare cases.
p4raw-id: //depot/perl@11797
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4735,7 +4735,7 @@ Perl_save_re_context(pTHX) SAVEVPTR(PL_reg_re); /* from regexec.c */ SAVEPPTR(PL_reg_ganch); /* from regexec.c */ SAVESPTR(PL_reg_sv); /* from regexec.c */ - SAVEI32(PL_reg_sv_utf8); /* from regexec.c */ + SAVESPTR(PL_reg_sv_utf8); /* from regexec.c */ SAVEVPTR(PL_reg_magic); /* from regexec.c */ SAVEI32(PL_reg_oldpos); /* from regexec.c */ SAVEVPTR(PL_reg_oldcurpm); /* from regexec.c */ |