You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This crash happens after I add a call to rb_gc for debug builds, the call is to ensure that the unmarshalling of class values isn't broken by a GC call.
Here the crash happens when trying to set a class data member on the exception object, the problem is that the exception is not longer in the stack and so it is eligible for GC, the ExceptionReader should mark it to avoid this.
The text was updated successfully, but these errors were encountered:
This crash happens after I add a call to
rb_gc
for debug builds, the call is to ensure that the unmarshalling of class values isn't broken by a GC call.Here the crash happens when trying to set a class data member on the exception object, the problem is that the exception is not longer in the stack and so it is eligible for GC, the ExceptionReader should mark it to avoid this.
The text was updated successfully, but these errors were encountered: