[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:
James Laird 2006-11-01 13:42:32 -05:00
parent 9e4f177eba
commit 16f8ef7ef0

View File

@ -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;