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:
Edward Hervey 2014-06-16 08:41:48 +02:00
parent bd26fa7ccb
commit ecd8fd3511

View file

@ -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