mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r30236] HDFFV-9928: remove duplicate and unconditional includes in h5diff_array.
Also format function block in h5diff_attr to eliminate excessive whitespace
This commit is contained in:
parent
4ce65b8585
commit
1494413413
@ -13,10 +13,6 @@
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#include <math.h>
|
||||
#include <time.h>
|
||||
#include <sys/timeb.h>
|
||||
|
||||
#include "H5private.h"
|
||||
#include "h5tools.h"
|
||||
#include "h5tools_utils.h"
|
||||
|
@ -75,14 +75,12 @@ static void table_attrs_free( table_attrs_t *table )
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
if (table)
|
||||
{
|
||||
if(table->attrs)
|
||||
{
|
||||
for(i = 0; i < table->nattrs; i++)
|
||||
{
|
||||
if(table->attrs[i].name)
|
||||
HDfree(table->attrs[i].name );
|
||||
if (table) {
|
||||
if (table->attrs) {
|
||||
for (i = 0; i < table->nattrs; i++) {
|
||||
if (table->attrs[i].name) {
|
||||
HDfree(table->attrs[i].name);
|
||||
}
|
||||
} /* end for */
|
||||
HDfree(table->attrs);
|
||||
table->attrs = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user