summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-01-27 18:53:45 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-01-27 18:54:24 +0100
commita602d5b3e4160494242b52cf34ad7f42337d75ac (patch)
tree87cf8e7d63a721cf8eb65b7a8a986769597e14f5 /tools
parent6ba3e11c90715bf8bd2f6695cf88fd5d07302f62 (diff)
downloadgstreamer-a602d5b3e4160494242b52cf34ad7f42337d75ac.tar.gz
gst-inspect: Don't unref plugin features multiple times
gst_plugin_feature_list_free() unrefs them too.
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-inspect.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index 02ef41b0a5..d7765941dd 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -1107,7 +1107,6 @@ print_all_uri_handlers (void)
if (!element) {
g_print ("couldn't construct element for %s for some reason\n",
GST_OBJECT_NAME (factory));
- gst_object_unref (factory);
continue;
}
@@ -1141,7 +1140,6 @@ print_all_uri_handlers (void)
}
gst_object_unref (element);
- gst_object_unref (factory);
}
}
@@ -1245,7 +1243,6 @@ print_plugin_features (GstPlugin * plugin)
num_other++;
}
num_features++;
- gst_object_unref (feature);
features = g_list_next (features);
}