Explorar el Código

Fixed memory leak

master
ooxi hace 12 años
padre
commit
3d2d9b3473
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      src/xml.c

+ 2
- 0
src/xml.c Ver fichero

@@ -654,6 +654,8 @@ struct xml_document* xml_parse_document(uint8_t* buffer, size_t length) {
* [PUBLIC API]
*/
void xml_document_free(struct xml_document* document, _Bool free_buffer) {
xml_node_free(document->root);

if (free_buffer) {
free(document->buffer.buffer);
}


Cargando…
Cancelar
Guardar