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
Remove all pointer casts using type inference from code interacting with the openexr-core-sys crate.
The current Drop function for Reader has an type cast using type inference.
This caused casting the *const sys::exr_file_t returned by self.inner() into *mut *mut exr_file_t required by exr_close(). Which lead to a crash at runtime when dropping a Reader struct.
The text was updated successfully, but these errors were encountered:
Remove all pointer casts using type inference from code interacting with the
openexr-core-sys
crate.The current Drop function for
Reader
has an type cast using type inference.This caused casting the
*const sys::exr_file_t
returned byself.inner()
into*mut *mut exr_file_t
required byexr_close()
. Which lead to a crash at runtime when dropping aReader
struct.The text was updated successfully, but these errors were encountered: