From 619b1df389936194809c2379043133f95d02fa1e Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 6 Dec 2024 09:16:57 -0300 Subject: [PATCH] gst-plugin-scanner: Do not create tracers when inspecting plugins Ensuring that GST_TRACERS is not set in that process Part-of: --- subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner.c b/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner.c index f83e50fdf6..ba0adbf006 100644 --- a/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner.c +++ b/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner.c @@ -67,6 +67,8 @@ main (int argc, char *argv[]) my_argv[0] = argv[0]; my_argv[1] = (char *) "--gst-disable-registry-update"; + g_unsetenv ("GST_TRACERS"); + #ifndef GST_DISABLE_REGISTRY _gst_disable_registry_cache = TRUE; #endif