diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-13 18:28:29 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-13 19:08:56 +0800 |
commit | 2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f (patch) | |
tree | b3550fbb097e032b740f3df94806315fc3e590d8 /libempathy-gtk | |
parent | 4ec913aeb99b71c85da47e47490954a22465babc (diff) | |
download | gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.gz gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.bz2 gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.lz gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.xz gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.zst gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.zip |
Call xmlCleanupParser() only once when exiting (#600693)
This function should only be called when exiting the application as it cleans
up the memory allocated by the library itself.
Thanks to Lennart for pointing this out.
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-plist.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-plist.c b/libempathy-gtk/empathy-plist.c index 4cc392bec..73d31466a 100644 --- a/libempathy-gtk/empathy-plist.c +++ b/libempathy-gtk/empathy-plist.c @@ -294,7 +294,6 @@ empathy_plist_parse_from_file (const char *filename) parsed_doc = empathy_plist_parse (root_element); xmlFreeDoc (doc); - xmlCleanupParser (); return parsed_doc; } @@ -329,7 +328,6 @@ empathy_plist_parse_from_memory (const char *data, gsize len) parsed_doc = empathy_plist_parse (root_element); xmlFreeDoc (doc); - xmlCleanupParser (); return parsed_doc; } |