fixed memory leak in c14n code

* c14n.c: fixed memory leak in c14n code
This commit is contained in:
Aleksey Sanin 2002-08-02 23:50:03 +00:00
parent 58e44c9daf
commit ea4272a199
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com>
* c14n.c: fixed a memory leak in c14n code
Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
* parser.c include/libxml/parser.h: adding a new API for Christian

4
c14n.c
View File

@ -167,6 +167,10 @@ xmlC14NVisibleNsStackDestroy(xmlC14NVisibleNsStackPtr cur) {
memset(cur->nsTab, 0, cur->nsMax * sizeof(xmlNsPtr));
xmlFree(cur->nsTab);
}
if(cur->nodeTab != NULL) {
memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr));
xmlFree(cur->nodeTab);
}
memset(cur, 0, sizeof(xmlC14NVisibleNsStack));
xmlFree(cur);