Modified: MacRuby/trunk/hash.h (5185 => 5186)
--- MacRuby/trunk/hash.h 2011-01-21 02:20:08 UTC (rev 5185)
+++ MacRuby/trunk/hash.h 2011-01-21 15:51:01 UTC (rev 5186)
@@ -41,14 +41,11 @@
static inline void
rhash_modify(VALUE hash)
{
- const long mask = RBASIC(hash)->flags;
- if ((mask & FL_FREEZE) == FL_FREEZE) {
- rb_raise(rb_eRuntimeError, "can't modify frozen/immutable hash");
+ if (OBJ_FROZEN(hash)) {
+ rb_error_frozen("hash");
}
- if ((mask & FL_TAINT) == FL_TAINT) {
- if (rb_safe_level() >= 4) {
- rb_raise(rb_eSecurityError, "Insecure: can't modify hash");
- }
+ if (!OBJ_UNTRUSTED(hash) && rb_safe_level() >= 4) {
+ rb_raise(rb_eSecurityError, "Insecure: can't modify hash");
}
}