Fix for bug #1543233 - missing XML_ParserFree.
diff --git a/expat/examples/outline.c b/expat/examples/outline.c
index 74c019a..78d5399 100644
--- a/expat/examples/outline.c
+++ b/expat/examples/outline.c
@@ -103,5 +103,6 @@
     if (done)
       break;
   }
+  XML_ParserFree(p);
   return 0;
 }