mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
gl: Don't leak pool if set_config failed
This commit is contained in:
parent
fc49a1b508
commit
1c66a33c56
1 changed files with 6 additions and 5 deletions
|
@ -165,13 +165,14 @@ gst_gl_mixer_propose_allocation (GstGLBaseMixer * base_mix,
|
|||
|
||||
config = gst_buffer_pool_get_config (pool);
|
||||
gst_buffer_pool_config_set_params (config, caps, size, 0, 0);
|
||||
if (!gst_buffer_pool_set_config (pool, config))
|
||||
goto config_failed;
|
||||
}
|
||||
|
||||
if (pool) {
|
||||
if (!gst_buffer_pool_set_config (pool, config)) {
|
||||
g_object_unref (pool);
|
||||
goto config_failed;
|
||||
}
|
||||
|
||||
gst_query_add_allocation_pool (query, pool, size, 1, 0);
|
||||
gst_object_unref (pool);
|
||||
g_object_unref (pool);
|
||||
}
|
||||
|
||||
/* we also support various metadata */
|
||||
|
|
Loading…
Reference in a new issue