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/empathy-irc-network-manager.c | |
parent | 4ec913aeb99b71c85da47e47490954a22465babc (diff) | |
download | gsoc2013-empathy-2ea53064d10dfe8ab13f6a7af3355a3f56d2d56f.tar.gz 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/empathy-irc-network-manager.c')
-rw-r--r-- | libempathy/empathy-irc-network-manager.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libempathy/empathy-irc-network-manager.c b/libempathy/empathy-irc-network-manager.c index 0b5bcc855..97d19a0eb 100644 --- a/libempathy/empathy-irc-network-manager.c +++ b/libempathy/empathy-irc-network-manager.c @@ -719,7 +719,6 @@ irc_network_manager_file_save (EmpathyIrcNetworkManager *self) xmlSaveFormatFileEnc (priv->user_file, doc, "utf-8", 1); xmlFreeDoc (doc); - xmlCleanupParser (); xmlMemoryDump (); priv->have_to_save = FALSE; |