This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5649b9c
)
Stop ENV_IS_CASELESS hv.c picking up the wrong hash value from a
author
Nicholas Clark
<nick@ccl4.org>
Tue, 6 Jul 2004 20:45:53 +0000
(20:45 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Tue, 6 Jul 2004 20:45:53 +0000
(20:45 +0000)
shared string scalar.
p4raw-id: //depot/perl@23058
hv.c
patch
|
blob
|
blame
|
history
diff --git
a/hv.c
b/hv.c
index
ca945f6
..
54f2e54
100644
(file)
--- a/
hv.c
+++ b/
hv.c
@@
-505,6
+505,7
@@
S_hv_fetch_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
key = (const char*)strupr((char*)key);
is_utf8 = 0;
hash = 0;
+ keysv = 0;
if (flags & HVhek_FREEKEY) {
Safefree(keysave);
@@
-547,6
+548,7
@@
S_hv_fetch_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
key = (const char*)strupr((char*)key);
is_utf8 = 0;
hash = 0;
+ keysv = 0;
if (flags & HVhek_FREEKEY) {
Safefree(keysave);