aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authorrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-02 02:24:45 +0000
committerrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-02 02:24:45 +0000
commit023d9610ee8f7e5a9ba36eca7b3dc15891173595 (patch)
treefe568b45d07d4b92b392aa4326f151cec9b408da /re.c
parent987af888fa2ac9f91419b259142667e2d95e3a02 (diff)
downloadruby-023d9610ee8f7e5a9ba36eca7b3dc15891173595.tar.gz
re.c: count associated Regexp object in MatchData#hash
Don't discard the hash value computed for the regexp object. It seems it was simply missed out in r24754, when MatchData#hash was initially implemented. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/re.c b/re.c
index 0536aa6d8e..9fec950ed9 100644
--- a/re.c
+++ b/re.c
@@ -2950,7 +2950,7 @@ match_hash(VALUE match)
const struct re_registers *regs;
st_index_t hashval = rb_hash_start(rb_str_hash(RMATCH(match)->str));
- rb_hash_uint(hashval, reg_hash(RMATCH(match)->regexp));
+ hashval = rb_hash_uint(hashval, reg_hash(RMATCH(match)->regexp));
regs = RMATCH_REGS(match);
hashval = rb_hash_uint(hashval, regs->num_regs);
hashval = rb_hash_uint(hashval, rb_memhash(regs->beg, regs->num_regs * sizeof(*regs->beg)));