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 Module::open method is safe when a block is passed: #close is called when the block exits. But if no block is passed, or Module::new is used then there's the potential for memory leaks if the underlying C memory structures are not cleared explicitly.
The
Module::open
method is safe when a block is passed:#close
is called when the block exits. But if no block is passed, orModule::new
is used then there's the potential for memory leaks if the underlying C memory structures are not cleared explicitly.Ruby "destructor" info here: https://stackoverflow.com/questions/5956067/ruby-destructors
The text was updated successfully, but these errors were encountered: