expat/examples outline.c,1.8,1.9
"Karl Waclawek" <[email protected]> Tue, 05 Sep 2006 13:07:42 -0700
| Newsgroups | gmane.text.xml.expat.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/expat/expat/examples
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv25366
Modified Files:
outline.c
Log Message:
Fix for bug #1543233 - missing XML_ParserFree.
Index: outline.c
===================================================================
RCS file: /cvsroot/expat/expat/examples/outline.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- outline.c 14 Apr 2006 18:03:57 -0000 1.8
+++ outline.c 5 Sep 2006 20:07:39 -0000 1.9
@@ -103,5 +103,6 @@
if (done)
break;
}
+ XML_ParserFree(p);
return 0;
}