mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
flowcombiner: Fixed GBoxedCopyFunc
I'll just quote the most interesting man in the world: "I don't usually push commits, but when I do I don't compile it first"
This commit is contained in:
parent
bd26fa7ccb
commit
ecd8fd3511
1 changed files with 3 additions and 1 deletions
|
@ -117,9 +117,11 @@ gst_flow_combiner_free (GstFlowCombiner * combiner)
|
|||
static GstFlowCombiner *
|
||||
gst_flow_combiner_ref (GstFlowCombiner * combiner)
|
||||
{
|
||||
g_return_if_fail (combiner != NULL);
|
||||
g_return_val_if_fail (combiner != NULL, NULL);
|
||||
|
||||
g_atomic_int_inc (&combiner->ref_count);
|
||||
|
||||
return combiner;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue