summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c
index d78f748..19279ed 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -1692,6 +1692,7 @@ plist_err_t plist_write_to_stream(plist_t plist, FILE *stream, plist_format_t fo
1692 if (fwrite(output, 1, length, stream) < length) { 1692 if (fwrite(output, 1, length, stream) < length) {
1693 err = PLIST_ERR_IO; 1693 err = PLIST_ERR_IO;
1694 } 1694 }
1695 free(output);
1695 } 1696 }
1696 return err; 1697 return err;
1697} 1698}