Missing free in some test code

There was a missing free causing a memory leak in some test code. The
memory leak was not in library code.
This commit is contained in:
Jay Berkenbilt 2017-08-26 22:04:49 -04:00
parent 728dc9e6d8
commit 4f8c734d8e
1 changed files with 1 additions and 0 deletions

View File

@ -228,6 +228,7 @@ static void test06(char const* infile,
qpdf_set_object_stream_mode(qpdf, qpdf_o_generate);
qpdf_write(qpdf);
report_errors();
free(buf);
}
static void test07(char const* infile,