diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-05-29 14:27:42 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-05-29 14:27:42 +0000 |
| commit | 64363995be531ea837ce9e52a5544e8707b17c69 (patch) | |
| tree | 29f7131acf5224ad10f8fe3ad5c134cef6d1cf00 /tests | |
| parent | 426ad6e3a3271d7550c113e7ac160a30ba012470 (diff) | |
[trunk] Fix a simple leak in test_tile_encoder
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_tile_encoder.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_tile_encoder.c b/tests/test_tile_encoder.c index 9c2f414e..ea0b5a4d 100644 --- a/tests/test_tile_encoder.c +++ b/tests/test_tile_encoder.c @@ -322,6 +322,8 @@ int main (int argc, char *argv[]) opj_destroy_codec(l_codec); opj_image_destroy(l_image); + free(l_data); + // Print profiling //PROFPRINT(); |
