forked from mirrors/gstreamer-rs
gstreamer: Update for try_from_glib() having become an unsafe function
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/issues/337
This commit is contained in:
parent
b1088a6d11
commit
b02f2acae5
1 changed files with 2 additions and 2 deletions
|
@ -60,9 +60,9 @@ macro_rules! impl_return_result_traits {
|
|||
|
||||
impl TryFromGlib<ffi::$ffi_type> for $ok_type {
|
||||
type Error = $err_type;
|
||||
fn try_from_glib(val: ffi::$ffi_type) -> Result<$ok_type, $err_type> {
|
||||
unsafe fn try_from_glib(val: ffi::$ffi_type) -> Result<$ok_type, $err_type> {
|
||||
skip_assert_initialized!();
|
||||
unsafe { $ret_type::from_glib(val) }.into_result()
|
||||
$ret_type::from_glib(val).into_result()
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue