Bug #10369 ยป 0001-array.c-swap-volatile-for-RB_GC_GUARD.patch
| array.c | ||
|---|---|---|
|
RHASH(hash)->ntbl = 0;
|
||
|
st_free_table(tbl);
|
||
|
}
|
||
|
RB_GC_GUARD(hash);
|
||
|
}
|
||
|
/*
|
||
| ... | ... | |
|
rb_ary_diff(VALUE ary1, VALUE ary2)
|
||
|
{
|
||
|
VALUE ary3;
|
||
|
volatile VALUE hash;
|
||
|
VALUE hash;
|
||
|
long i;
|
||
|
hash = ary_make_hash(to_ary(ary2));
|
||
|
-
|
||