diff options
author | Artur Bergman <sky@nanisky.com> | 2001-08-31 17:30:26 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-08-31 17:30:26 +0000 |
commit | 6e072df014fdece72bd24fb4d17e9a5b4a1d326b (patch) | |
tree | d22ae51abcb45c5e849f383433a54510325a35cd /regcomp.c | |
parent | bc769488d48dfc3f9427d7cf0b8a8f5098cc9d84 (diff) | |
download | perl-6e072df014fdece72bd24fb4d17e9a5b4a1d326b.tar.gz |
Fixes bug in change 11717 that bus errored on HP-UX 10.20
Might break on platforms where bool is larger than 8 bites ???
p4raw-id: //depot/perl@11800
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 */ + SAVEI8(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 */ |