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 byond_ffi_fn macro does not validate its argc or argv received from BYOND. when no arguments are passed through call_ext, argv is a null pointer and argc is 0; slice::from_raw_parts panics on debug builds when passed a null pointer as data.
The text was updated successfully, but these errors were encountered:
the
byond_ffi_fn
macro does not validate itsargc
orargv
received from BYOND. when no arguments are passed throughcall_ext
, argv is a null pointer and argc is 0;slice::from_raw_parts
panics on debug builds when passed a null pointer as data.The text was updated successfully, but these errors were encountered: