mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r4527] Purpose:
Code cleanup Description: Purify detected some resource leaks in the tests. Solution: Released memory and property lists properly. Platforms tested: Solaris 2.7 (arabica)
This commit is contained in:
parent
4b3875ad58
commit
d4df0d40dc
@ -958,8 +958,10 @@ test_genprop_prop_cls_cb1(const char *name, size_t size, void *value)
|
||||
{
|
||||
/* Set the information from the close call */
|
||||
prop1_cb_info.cls_count++;
|
||||
prop1_cb_info.cls_name=HDstrdup(name);
|
||||
prop1_cb_info.cls_value=HDmalloc(size);
|
||||
if(prop1_cb_info.cls_name==NULL)
|
||||
prop1_cb_info.cls_name=HDstrdup(name);
|
||||
if(prop1_cb_info.cls_value==NULL)
|
||||
prop1_cb_info.cls_value=HDmalloc(size);
|
||||
HDmemcpy(prop1_cb_info.cls_value,value,size);
|
||||
|
||||
return(SUCCEED);
|
||||
@ -1172,6 +1174,13 @@ test_genprop_list_callback(void)
|
||||
printf("Property #1 value doesn't match!, line=%d\n",__LINE__);
|
||||
} /* end if */
|
||||
|
||||
/* Close second list */
|
||||
ret = H5Pclose_list(lid2);
|
||||
CHECK_I(ret, "H5Pclose_list");
|
||||
|
||||
/* Verify close callback information for properties tracked */
|
||||
VERIFY(prop1_cb_info.cls_count, 2, "H5Pclose");
|
||||
|
||||
/* Free memory allocated for tracking properties */
|
||||
HDfree(prop1_cb_info.crt_name);
|
||||
HDfree(prop1_cb_info.crt_value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user