From: Tim-Philipp Müller Date: Thu, 26 Mar 2009 14:44:04 +0000 (+0000) Subject: registry: ignore .git directory when recursively scanning plugin paths for plugins X-Git-Tag: RELEASE-0.10.23~81 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea554b1d62e80a3be0ecd547b154d4a4937a68ee;p=platform%2Fupstream%2Fgstreamer.git registry: ignore .git directory when recursively scanning plugin paths for plugins Saves some cycles/pandas for those of us who run uninstalled setups. --- diff --git a/gst/gstregistry.c b/gst/gstregistry.c index bfb099d..fe5b447 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -823,8 +823,8 @@ gst_registry_scan_path_level (GstRegistry * registry, const gchar * path, if (file_status.st_mode & S_IFDIR) { /* skip the .debug directory, these contain elf files that are not * useful or worse, can crash dlopen () */ - if (g_str_equal (dirent, ".debug")) { - GST_LOG_OBJECT (registry, "found .debug directory, ignoring"); + if (g_str_equal (dirent, ".debug") || g_str_equal (dirent, ".git")) { + GST_LOG_OBJECT (registry, "ignoring .debug or .git directory"); g_free (filename); continue; }