diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-11-22 23:37:24 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-11-22 23:37:24 +0000 |
commit | 7fd3d16ee33a2f80699a3491d0bedc18c17ccd80 (patch) | |
tree | 0bdf3346a8c7aae485b439d030cf9a6fb7fa1fe4 /hv.c | |
parent | f97011767e2b1f2e51edcb85858dc587e7499126 (diff) | |
download | perl-7fd3d16ee33a2f80699a3491d0bedc18c17ccd80.tar.gz |
D'oh. Mistake in the DYNAMIC_ENV_FETCH conditional code
reported by Craig Berry
p4raw-id: //depot/perl@21779
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -689,7 +689,7 @@ S_hv_fetch_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, if (env) { sv = newSVpvn(env,len); SvTAINTED_on(sv); - return hv_fetch_common(hv,keysv,key,keylen,HV_FETCH_ISSTORE,sv, + return hv_fetch_common(hv,keysv,key,klen,flags,HV_FETCH_ISSTORE,sv, hash); } } |