fix potential memory leak in elements.c

This commit is contained in:
zhouzhongyuan 2019-09-05 16:17:51 +08:00
parent 3ae79a8893
commit 90e44cde80

1
expat/examples/elements.c Normal file → Executable file
View File

@ -88,6 +88,7 @@ main(int argc, char *argv[]) {
fprintf(stderr, "%" XML_FMT_STR " at line %" XML_FMT_INT_MOD "u\n",
XML_ErrorString(XML_GetErrorCode(parser)),
XML_GetCurrentLineNumber(parser));
XML_ParserFree(parser);
return 1;
}
} while (! done);