From bb9a770cf34c9a6918fbc1ca6830c93ef3aa27a0 Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 21 Mar 2018 15:27:09 +0000 Subject: merge revision(s) 62107: [Backport #14420] force fixable * complex.c (nucomp_hash): force hash values fixable. [ruby-core:85224] [Bug #14420] * rational.c (nurat_hash): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@62877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- complex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'complex.c') diff --git a/complex.c b/complex.c index 5aa76ad230..81fdb4fa4b 100644 --- a/complex.c +++ b/complex.c @@ -1233,7 +1233,7 @@ nucomp_hash(VALUE self) n = rb_hash(dat->imag); h[1] = NUM2LONG(n); v = rb_memhash(h, sizeof(h)); - return LONG2FIX(v); + return ST2FIX(v); } /* :nodoc: */ -- cgit v1.2.3