diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-07-03 14:34:12 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-07-03 14:34:12 (GMT) |
commit | a0ccc0f0faf4c12c0ef81777f6d9ae5e1a1107f9 (patch) | |
tree | 5a3b509055a929ca1b7389d7fd180131bf66cc6e /hl/examples | |
parent | 259abfa83970f7da997e2b95c8357fd85b800bbe (diff) | |
download | hdf5-a0ccc0f0faf4c12c0ef81777f6d9ae5e1a1107f9.zip hdf5-a0ccc0f0faf4c12c0ef81777f6d9ae5e1a1107f9.tar.gz hdf5-a0ccc0f0faf4c12c0ef81777f6d9ae5e1a1107f9.tar.bz2 |
[svn-r23860] HDFFV-8322: reduce valgrind memory leaks for ex_image2
Tested:" local linux
Diffstat (limited to 'hl/examples')
-rw-r--r-- | hl/examples/ex_image2.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hl/examples/ex_image2.c b/hl/examples/ex_image2.c index 77398c4..76c3a75 100644 --- a/hl/examples/ex_image2.c +++ b/hl/examples/ex_image2.c @@ -46,6 +46,10 @@ int main( void ) /* make the image */ status=H5IMmake_image_8bit( file_id, IMAGE1_NAME, width, height, gbuf ); + if (gbuf) { + free(gbuf); + gbuf = NULL; + } /*------------------------------------------------------------------------- * define a palette, blue to red tones @@ -75,6 +79,10 @@ int main( void ) /* make dataset */ status=H5IMmake_image_24bit( file_id, IMAGE2_NAME, width, height, "INTERLACE_PIXEL", gbuf ); + if (gbuf) { + free(gbuf); + gbuf = NULL; + } /* close the file. */ H5Fclose( file_id ); |