From: Philippe Normand Date: Mon, 20 Jun 2022 14:29:21 +0000 (+0100) Subject: gst-inspect: Fix inspection of third-party plugins X-Git-Tag: 1.22.0~1421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=190f15660f0f72129a0d3894b8999b026d605c98;p=platform%2Fupstream%2Fgstreamer.git gst-inspect: Fix inspection of third-party plugins Since commit de57657de1d1916503b4ad451ac13a3e191465f8 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: --- diff --git a/subprojects/gstreamer/tools/gst-inspect.c b/subprojects/gstreamer/tools/gst-inspect.c index c36bf37..95aa7eb 100644 --- a/subprojects/gstreamer/tools/gst-inspect.c +++ b/subprojects/gstreamer/tools/gst-inspect.c @@ -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;