xml_free_config.c File Reference

Free memory for an xmlConfig_t structure. More...

#include <xml_utils.h>
Include dependency graph for xml_free_config.c:

Go to the source code of this file.

Functions

void xml_free_config (xmlConfig_t *conf)
 Free memory for an xmlConfig_t structure.

Detailed Description

Free memory for an xmlConfig_t structure.

Definition in file xml_free_config.c.


Function Documentation

void xml_free_config ( xmlConfig_t conf  ) 

Free memory for an xmlConfig_t structure.

Parameters:
[in] conf XML information for DOM and XPath

Definition at line 58 of file xml_free_config.c.

References xmlConfig_t::ctxt, xmlConfig_t::doc, and xmlConfig_t::file.

Referenced by load_conf(), and xml_load_config().

00058                                    {
00063   (void) xmlXPathFreeContext(conf->ctxt);
00064   (void) xmlFreeDoc(conf->doc);
00065   (void) free(conf->file);
00066   (void) free(conf);
00067 
00068 }


Generated on 12 May 2016 for DSCLIM by  doxygen 1.6.1