diff options
Diffstat (limited to 'test/example.c')
-rw-r--r-- | test/example.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/example.c b/test/example.c index 4b78f21..7c17964 100644 --- a/test/example.c +++ b/test/example.c @@ -633,7 +633,10 @@ void test_deflate_copy(unsigned char *compr, size_t comprLen) } err = PREFIX(deflateEnd)(&c_stream); - CHECK_ERR(err, "deflateEnd"); + CHECK_ERR(err, "deflateEnd original"); + + err = PREFIX(deflateEnd)(&c_stream_copy); + CHECK_ERR(err, "deflateEnd copy"); } /* =========================================================================== |