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
Several times we've had nulls creep in from user code and cause us to do something scary like a 0-ptr deref, which leaves users confused and frustrated, eg https://github.com/orgs/lightningdevkit/discussions/1820. We really should instead null check and call jni->FatalError, even though its a bit more code, because it makes users much happier.
The text was updated successfully, but these errors were encountered:
Several times we've had
null
s creep in from user code and cause us to do something scary like a 0-ptr deref, which leaves users confused and frustrated, eg https://github.com/orgs/lightningdevkit/discussions/1820. We really should instead null check and calljni->FatalError
, even though its a bit more code, because it makes users much happier.The text was updated successfully, but these errors were encountered: