mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fixed memory leak in c14n code
* c14n.c: fixed memory leak in c14n code
This commit is contained in:
parent
58e44c9daf
commit
ea4272a199
@ -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
4
c14n.c
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user