From a3a1f374468d6c3d3888ef5f4fb90da744b46da2 Mon Sep 17 00:00:00 2001 From: Jerome Soumagne Date: Tue, 21 Apr 2015 12:06:34 -0500 Subject: [svn-r26868] Remove accum_change assert in H5T for now --- src/H5T.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5T.c b/src/H5T.c index aaf8bc1..6cef1c6 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -3260,7 +3260,7 @@ H5T_copy(H5T_t *old_dt, H5T_copy_t method) new_dt->shared->u.compnd.memb[i].size = (old_dt->shared->u.compnd.memb[old_match].size*tmp->shared->size)/old_dt->shared->u.compnd.memb[old_match].type->shared->size; accum_change += (int) (new_dt->shared->u.compnd.memb[i].type->shared->size - old_dt->shared->u.compnd.memb[old_match].type->shared->size); - HDassert(accum_change >= 0); + /* HDassert(accum_change >= 0); */ } /* end if */ } /* end for */ @@ -5171,7 +5171,7 @@ H5T_set_loc(H5T_t *dt, H5F_t *f, H5T_loc_t loc) /* Add that change to the accumulated size change */ accum_change += (int) (memb_type->shared->size - old_size); - HDassert(accum_change >= 0); + /* HDassert(accum_change >= 0); */ } /* end if */ } /* end if */ } /* end for */ -- cgit v0.12