[svn-r2946] Purpose:

Small code optimzation
Description:
    Removed some unnecessary calls to H5MM_xfree
Platforms tested:
    Solaris 2.6 (baldric)
This commit is contained in:
Quincey Koziol 2000-11-16 12:29:26 -05:00
parent b39c60db45
commit eddfdc1274

View File

@ -6584,8 +6584,10 @@ H5T_cmp(const H5T_t *dt1, const H5T_t *dt2)
} /* end switch */
done:
H5MM_xfree(idx1);
H5MM_xfree(idx2);
if(idx1!=NULL)
H5MM_xfree(idx1);
if(idx2!=NULL)
H5MM_xfree(idx2);
FUNC_LEAVE(ret_value);
}