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
The root cause of the segfault is thatself->executing_reaction is NULL inside _lf_check_deadline, so when the check deadline function tries to dereference self->executing_reaction to get the deadline, it dereferences a NULL pointer.
The root cause of the segfault is that
self->executing_reaction
isNULL
inside_lf_check_deadline
, so when the check deadline function tries to dereferenceself->executing_reaction
to get the deadline, it dereferences aNULL
pointer.Minimal Example to reproduce:
Running this code gives a segfault.
This bug has caused the
AnytimePrime.lf
example in the experimental repo to fail.The text was updated successfully, but these errors were encountered: