forked from mirrors/gstreamer-rs
Unref the message in sync bus handlers if Drop is returned
This commit is contained in:
parent
1855a1adbd
commit
8a4370022a
1 changed files with 7 additions and 1 deletions
|
@ -53,7 +53,13 @@ unsafe extern "C" fn trampoline_sync(
|
|||
let _guard = CallbackGuard::new();
|
||||
#[cfg_attr(feature = "cargo-clippy", allow(transmute_ptr_to_ref))]
|
||||
let f: &&(Fn(&Bus, &Message) -> BusSyncReply + Send + Sync + 'static) = transmute(func);
|
||||
f(&from_glib_borrow(bus), &Message::from_glib_borrow(msg)).to_glib()
|
||||
let res = f(&from_glib_borrow(bus), &Message::from_glib_borrow(msg)).to_glib();
|
||||
|
||||
if res == ffi::GST_BUS_DROP {
|
||||
ffi::gst_mini_object_unref(msg as *mut _);
|
||||
}
|
||||
|
||||
res
|
||||
}
|
||||
|
||||
unsafe extern "C" fn destroy_closure_sync(ptr: gpointer) {
|
||||
|
|
Loading…
Reference in a new issue