mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r12839] Cleaned up a resource leak when Packet Tables are opened.
Tested on juniper (will test on kagiso after check-in to make sure that nothing's broken).
This commit is contained in:
parent
9e4f177eba
commit
16f8ef7ef0
@ -245,6 +245,9 @@ hid_t H5PTopen( hid_t loc_id,
|
||||
if ((table->type_id = H5Tget_native_type(type_id, H5T_DIR_ASCEND)) < 0)
|
||||
goto out;
|
||||
|
||||
if (H5Tclose(type_id) < 0)
|
||||
goto out;
|
||||
|
||||
/* Initialize the current record pointer */
|
||||
if((H5PT_create_index(table)) <0)
|
||||
goto out;
|
||||
|
Loading…
x
Reference in New Issue
Block a user