summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2006-07-14 12:34:09 +0300
committerH.Merijn Brand <h.m.brand@xs4all.nl>2006-07-14 07:03:08 +0000
commit0b2d3faa276ad12850b3d1cb417e36a43029c4ec (patch)
tree054591d0f5751809ad21631f949de053782d66c8 /hv.c
parent4438fa18e7cba3001c09fd5b69d1478785845b88 (diff)
downloadperl-0b2d3faa276ad12850b3d1cb417e36a43029c4ec.tar.gz
-DPERL_GLOBAL_STRUCT_PRIVATE tweaks (done_sanity_check global? yech!)
Message-Id: <200607140634.k6E6Y9Ia471707@kosh.hut.fi> p4raw-id: //depot/perl@28570
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hv.c b/hv.c
index 4f55ccaccc..c3a418875b 100644
--- a/hv.c
+++ b/hv.c
@@ -2577,6 +2577,7 @@ Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph)
SV *
S_refcounted_he_value(pTHX_ const struct refcounted_he *he)
{
+ dVAR;
SV *value;
switch(he->refcounted_he_data[0] & HVrhek_typemask) {
case HVrhek_undef:
@@ -2728,6 +2729,7 @@ SV *
Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv,
const char *key, STRLEN klen, int flags, U32 hash)
{
+ dVAR;
/* Just to be awkward, if you're using this interface the UTF-8-or-not-ness
of your key has to exactly match that which is stored. */
SV *value = &PL_sv_placeholder;