summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-17 02:01:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-17 02:01:37 +0000
commit6bcd363ebf4fc4cde24fd94f48786d4da996e07e (patch)
tree618499270d1403629fe085727ab6d481a234fae0 /string.c
parent446bcf9a23758a5226f243ec8e2ab93e75e087ce (diff)
* string.c (rb_str_hash): gets rid of collisions between different
encoding strings. [ruby-core:20526] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/string.c b/string.c
index f940966753..d34a1e861c 100644
--- a/string.c
+++ b/string.c
@@ -2014,7 +2014,11 @@ rb_memhash(const void *ptr, long len)
int
rb_str_hash(VALUE str)
{
- return rb_memhash((const void *)RSTRING_PTR(str), RSTRING_LEN(str));
+ int e = ENCODING_GET(str);
+ if (e) {
+ if (rb_enc_str_asciionly_p(str)) e = 0;
+ }
+ return rb_memhash((const void *)RSTRING_PTR(str), RSTRING_LEN(str)) ^ e;
}
int