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
We are a bit cavalier about passing around raw pointers (sexp) objects, and so we don't always ensure that a reference is kept when doing ccalls: this is likely the cause of the occasional segfaults that are reported (e.g. #348, #431).
The easiest option is probably to change all functions to use RObjects directly, and define appropriate cconvert/unsafe_convert methods.
The text was updated successfully, but these errors were encountered:
We are a bit cavalier about passing around raw pointers (sexp) objects, and so we don't always ensure that a reference is kept when doing
ccall
s: this is likely the cause of the occasional segfaults that are reported (e.g. #348, #431).The easiest option is probably to change all functions to use
RObject
s directly, and define appropriatecconvert
/unsafe_convert
methods.The text was updated successfully, but these errors were encountered: