diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-24 16:52:12 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-24 16:52:12 (GMT) |
commit | c96d841efa7f9ac753a1b801432b6f541470e06e (patch) | |
tree | 07e0ca31e5a4a8bf65d931c2ce1d5efa23d821c8 /tools/h5dump.c | |
parent | b9bd7a9d64d5fbf722397487992729f843451394 (diff) | |
download | hdf5-c96d841efa7f9ac753a1b801432b6f541470e06e.zip hdf5-c96d841efa7f9ac753a1b801432b6f541470e06e.tar.gz hdf5-c96d841efa7f9ac753a1b801432b6f541470e06e.tar.bz2 |
[svn-r1988] fixed the crashing bug on sangamon with the shared libs. I had a line thet closed the
attribute that wasn't ever opened. deleted the line and it was all ok.
Diffstat (limited to 'tools/h5dump.c')
-rw-r--r-- | tools/h5dump.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index d3f5699..93b6c4b 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1150,7 +1150,6 @@ dump_data (hid_t obj_id, int obj_data) { H5Tclose(p_type); H5Sclose(space); H5Tclose(type); - H5Aclose(attr); } |