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
Contracts/DFCC: do not access invalidated references
In a sequence of `if` statements an earlier condition evaluated to true,
the body updated the irep a reference into which was held, making the
reference invalid when evaluating the next condition. This resulted in
intermittent segmentation faults.
Use `if`/`else if` instead to avoid evaluating later conditions.
0 commit comments