mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
fix bug with --gst-fatal-warnings when exclude_args is NULL
Original commit message from CVS: fix bug with --gst-fatal-warnings when exclude_args is NULL
This commit is contained in:
parent
5f9f9bff5e
commit
8e5c223871
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ main(int argc, char *argv[])
|
|||
|
||||
if (!silent)
|
||||
{
|
||||
gchar **exclude_list = g_strsplit (exclude_args, ",", 0);
|
||||
gchar **exclude_list = exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
|
||||
g_signal_connect (pipeline, "deep_notify", G_CALLBACK (property_change_callback), exclude_list);
|
||||
}
|
||||
g_signal_connect (pipeline, "error", G_CALLBACK (error_callback), NULL);
|
||||
|
|
Loading…
Reference in a new issue