Project

General

Profile

Bug #19167 ยป 0001-Fix-Object-inspect-with-NilClass-as-an-ivar.patch

View differences:

object.c
else {
rb_str_cat2(str, ", ");
}
rb_str_catf(str, "%"PRIsVALUE"=%+"PRIsVALUE,
rb_id2str(id), value);
rb_str_catf(str, "%"PRIsVALUE"=", rb_id2str(id));
rb_str_buf_append(str, rb_inspect(value));
return ST_CONTINUE;
}
    (1-1/1)