[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:
Allen Byrne 2016-08-01 12:26:41 -05:00
parent 4ce65b8585
commit 1494413413
2 changed files with 6 additions and 12 deletions

View File

@ -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"

View File

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