[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:
HDF Rational 2001-10-05 17:29:20 -05:00
parent 4b3875ad58
commit d4df0d40dc

View File

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