1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* marshal.c (r_symreal): no longer need volatile modifier, as using

rb_intern_str() not rb_intern().


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-03-28 06:05:20 +00:00
parent b95b56cc3a
commit 113c6d58e7

View file

@ -1148,7 +1148,7 @@ r_symlink(struct load_arg *arg)
static ID
r_symreal(struct load_arg *arg, int ivar)
{
volatile VALUE s = r_bytes(arg);
VALUE s = r_bytes(arg);
ID id;
int idx = -1;
st_index_t n = arg->symbols->num_entries;