gst/registries/gstxmlregistry.c: Fix memleak (#163801).

Original commit message from CVS:
Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
* gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
Fix memleak (#163801).
This commit is contained in:
Ronald S. Bultje 2005-01-17 12:53:37 +00:00
parent c0ea459eae
commit d4fec072e7
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2005-01-17 Luca Ognibene <luogni@tin.it>
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
Fix memleak (#163801).
2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link):

View file

@ -698,6 +698,7 @@ gst_xml_registry_load (GstRegistry * registry)
CLASS (xmlregistry)->close_func (xmlregistry);
g_markup_parse_context_free (xmlregistry->context);
return TRUE;
}