From 3247aa351eb300b408e64be3a0b81910374d1327 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Mon, 14 Jun 2004 14:00:54 -0500 Subject: [svn-r8682] Purpose: Take out unnecessary step Description: I put function call of H5T_lock in H5T_open in last checkin. It's unnecessary. Solution: Take out. Platforms tested: eirene(simple change). --- src/H5T.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/H5T.c b/src/H5T.c index 91ad28e..b8d4e57 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -2748,10 +2748,6 @@ H5T_open (H5G_entry_t *loc, const char *name, hid_t dxpl_id) if (H5T_vlen_mark(dt, NULL, H5T_VLEN_MEMORY)<0) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, NULL, "invalid datatype location") - /* Unlock data type */ - if (H5T_lock (dt, FALSE)<0) - HGOTO_ERROR (H5E_DATATYPE, H5E_CANTINIT, NULL, "unable to lock transient data type") - /* Set return value */ ret_value=dt; -- cgit v0.12