From adce7dfd846901f3164d446cf7443747ddefc492 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 9 Dec 2009 13:16:07 -0500 Subject: [svn-r17978] Description: Simplify checking for detecting variable-length strings. Tested on: Mac OS X/32 10.6.2 (amazon) debug & production Too minor to require h5committest --- src/H5T.c | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/src/H5T.c b/src/H5T.c index bbd3854..de917f6 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -1913,12 +1913,9 @@ H5Tdetect_class(hid_t type, H5T_class_t cls) if(!(cls > H5T_NO_CLASS && cls < H5T_NCLASSES)) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5T_NO_CLASS, "not a datatype class") - /* Set return value. Consider VL string as a string for API, as a VL for - * internal use. */ - if(H5T_IS_VL_STRING(dt->shared)) - ret_value = (H5T_STRING == cls); - else - ret_value = H5T_detect_class(dt, cls, TRUE); + /* Set return value */ + if((ret_value = H5T_detect_class(dt, cls, TRUE)) < 0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, H5T_NO_CLASS, "can't get datatype class") done: FUNC_LEAVE_API(ret_value) @@ -1948,7 +1945,7 @@ done: *------------------------------------------------------------------------- */ htri_t -H5T_detect_class (const H5T_t *dt, H5T_class_t cls, hbool_t from_api) +H5T_detect_class(const H5T_t *dt, H5T_class_t cls, hbool_t from_api) { unsigned i; htri_t ret_value=FALSE; /* Return value */ @@ -1958,9 +1955,11 @@ H5T_detect_class (const H5T_t *dt, H5T_class_t cls, hbool_t from_api) assert(dt); assert(cls>H5T_NO_CLASS && clsshared)) HGOTO_DONE(H5T_STRING == cls); @@ -1974,11 +1973,6 @@ H5T_detect_class (const H5T_t *dt, H5T_class_t cls, hbool_t from_api) for (i=0; ishared->u.compnd.nmembs; i++) { htri_t nested_ret; /* Return value from nested call */ - /* Consider VL string as a string for API, as a VL for internal use. - * Do it again here to check members of compound type. */ - if(from_api && H5T_IS_VL_STRING(dt->shared->u.compnd.memb[i].type->shared)) - HGOTO_DONE(H5T_STRING == cls); - /* Check if this field's type is the correct type */ if(dt->shared->u.compnd.memb[i].type->shared->type==cls) HGOTO_DONE(TRUE); -- cgit v0.12