summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2018-12-28 12:50:14 +0000
committerDavid Mitchell <davem@iabyn.com>2019-02-19 13:28:12 +0000
commit6009fde9e4e3d825057f663d300a7bede478e5c3 (patch)
treedbdfb14195c265b46a3440ac923559e2596a4d01 /perlvars.h
parent999d65ede909a162fb0accd370ffdf1411e94d5e (diff)
downloadperl-6009fde9e4e3d825057f663d300a7bede478e5c3.tar.gz
PL_InBitmap: fix with -DPERL_GLOBAL_STRUCT_PRIVATE
Valgrind wasn't happy, as this global var wasn't being initialised to NULL.
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perlvars.h b/perlvars.h
index d8139c068d..ae34a1e583 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -304,7 +304,7 @@ PERLVAR(G, utf8_tosimplefold, SV *)
PERLVAR(G, utf8_charname_begin, SV *)
PERLVAR(G, utf8_charname_continue, SV *)
PERLVAR(G, utf8_mark, SV *)
-PERLVAR(G, InBitmap, SV *)
+PERLVARI(G, InBitmap, SV *, NULL)
PERLVAR(G, CCC_non0_non230, SV *)
/* Definitions of user-defined \p{} properties, as the subs that define them