1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>

Sep  3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>

	* doc/tutorial/includekeyword.c
	* doc/tutorial/xmltutorial.xml
	(plus resulting generated html files)
	fixing one spot I missed in the tutorial where I hadn't freed
	memory properly
This commit is contained in:
John Fleck
2002-09-04 03:16:23 +00:00
parent 77e4d358c6
commit be98b3323f
5 changed files with 12 additions and 0 deletions

View File

@ -30,6 +30,7 @@ parseDoc(char *docname) {
if (doc == NULL ) {
fprintf(stderr,&quot;Document not parsed successfully. \n&quot;);
xmlFreeDoc(doc);
return;
}