diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-26 04:32:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-26 04:32:10 (GMT) |
commit | 5ffd704c8ce8a0f1d0f0b85fc3dcfa58779002b7 (patch) | |
tree | 8a6da2c061d1c5173237a72ead2d6bea0ce53427 /src/H5S.c | |
parent | b015e55614aa4780806e9515a4a35bea76fa09bf (diff) | |
download | hdf5-5ffd704c8ce8a0f1d0f0b85fc3dcfa58779002b7.zip hdf5-5ffd704c8ce8a0f1d0f0b85fc3dcfa58779002b7.tar.gz hdf5-5ffd704c8ce8a0f1d0f0b85fc3dcfa58779002b7.tar.bz2 |
[svn-r8943] Purpose:
Bug fix
Description:
Close memory leak I introduced in H5Sencode() routine.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1961,6 +1961,8 @@ H5S_decode(unsigned char *buf) ret_value=ds; done: + H5MM_xfree(f.shared); + FUNC_LEAVE_NOAPI(ret_value); } |