bennetthardwick / rust-obs-plugins

A safe wrapper around the OBS API, useful for creating OBS sources, filters and effects.
GNU General Public License v2.0
187 stars 32 forks source link

Catch unwinds in native callbacks #9

Open kmod-midori opened 3 years ago

kmod-midori commented 3 years ago

According to this article, unwinding across FFI boundary is still a UB, which we'd better avoid. Even though we can carefully examine our code to ensure that no unwrap is there, accidents can still happen, turning a programming mistake into a live accident.