mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gltestsrc: don't dereference null pointer
funcs can be NULL, it is one of the two conditions of the OR statement above, so confirm it isn't before dereferencing with funcs->free. CID 1358388
This commit is contained in:
parent
3ee2183038
commit
73110e6985
1 changed files with 1 additions and 1 deletions
|
@ -740,7 +740,7 @@ gst_gl_test_src_callback (gpointer stuff)
|
||||||
funcs = src->src_funcs;
|
funcs = src->src_funcs;
|
||||||
|
|
||||||
if (!funcs || src->set_pattern != src->active_pattern) {
|
if (!funcs || src->set_pattern != src->active_pattern) {
|
||||||
if (src->src_impl)
|
if (src->src_impl && funcs)
|
||||||
funcs->free (src->src_impl);
|
funcs->free (src->src_impl);
|
||||||
src->src_funcs = funcs =
|
src->src_funcs = funcs =
|
||||||
gst_gl_test_src_get_src_funcs_for_pattern (src->set_pattern);
|
gst_gl_test_src_get_src_funcs_for_pattern (src->set_pattern);
|
||||||
|
|
Loading…
Reference in a new issue