Commit 432e45db authored by Geoffroy Couprie's avatar Geoffroy Couprie Committed by Jean-Baptiste Kempf

Initialize threading code in libxml2

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 241da007
...@@ -74,6 +74,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -74,6 +74,8 @@ static int Open( vlc_object_t *p_this )
{ {
xml_t *p_xml = (xml_t *)p_this; xml_t *p_xml = (xml_t *)p_this;
xmlInitParser();
p_xml->pf_reader_create = ReaderCreate; p_xml->pf_reader_create = ReaderCreate;
p_xml->pf_reader_delete = ReaderDelete; p_xml->pf_reader_delete = ReaderDelete;
...@@ -88,6 +90,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -88,6 +90,7 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
static void Close( vlc_object_t *p_this ) static void Close( vlc_object_t *p_this )
{ {
xmlCleanupParser();
VLC_UNUSED(p_this); VLC_UNUSED(p_this);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment