From 58a73d96b44de66c7a665e08374391adcad5239c Mon Sep 17 00:00:00 2001 From: normal Date: Sat, 11 Oct 2014 06:02:42 +0000 Subject: [PATCH] string.c (rb_str_intern): remove unnecessary RB_GC_GUARD Incorrectly placed, and no longer needed since r25351 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ string.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c549373cc..25bf9424fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Oct 11 14:57:08 2014 Eric Wong + + * string.c (rb_str_intern): remove unnecessary RB_GC_GUARD + Sat Oct 11 13:47:13 2014 Nobuyoshi Nakada * parse.y (remove_duplicate_keys): remove duplicate literal keys, diff --git a/string.c b/string.c index fc6fe5942f..6e50b8ef2e 100644 --- a/string.c +++ b/string.c @@ -7549,9 +7549,8 @@ rb_str_crypt(VALUE str, VALUE salt) VALUE -rb_str_intern(VALUE s) +rb_str_intern(VALUE str) { - VALUE str = RB_GC_GUARD(s); ID id; id = rb_intern_str(str);