mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-13 03:24:14 +00:00
gst-inspect: Fix inspection of third-party plugins
Since commit de57657de1
inspecting a third-party
plugin would trigger a segfault (Address boundary error) due to the missing
sentinel in the list of GStreamer modules.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2636>
This commit is contained in:
parent
eaa9943b98
commit
190f15660f
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ GMainLoop *loop = NULL;
|
|||
static const gchar *gstreamer_modules[] = {
|
||||
"gstreamer", "gst-plugins-base", "gst-plugins-good", "gst-plugins-ugly",
|
||||
"gst-plugins-bad", "gst-editing-services", "gst-libav", "gst-rtsp-server",
|
||||
"gstreamer-vaapi"
|
||||
"gstreamer-vaapi", NULL
|
||||
};
|
||||
|
||||
static char *_name = NULL;
|
||||
|
|
Loading…
Reference in a new issue