summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2008-12-23 15:52:22 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2008-12-23 15:52:22 (GMT)
commit2a6e4d4e430b56eaa041619472f1ee0e7c0e732f (patch)
tree248c261398343ff4607291912e1d0212598089f9 /tools/lib
parentfdcd0fb59f4e5b71a4f158fe41c57b811a11d71c (diff)
downloadhdf5-2a6e4d4e430b56eaa041619472f1ee0e7c0e732f.zip
hdf5-2a6e4d4e430b56eaa041619472f1ee0e7c0e732f.tar.gz
hdf5-2a6e4d4e430b56eaa041619472f1ee0e7c0e732f.tar.bz2
[svn-r16218] Merging trunk 16217
Bug fix PG compiler complains about array out of bounds (a rank of zero was not checked) Adding a scalar dataset to the test generator program. this case is run on a previous existing run, the case was added to 2 existing files Tested: windows, linux
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/h5diff_array.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/tools/lib/h5diff_array.c b/tools/lib/h5diff_array.c
index df19ece..2b18acc 100644
--- a/tools/lib/h5diff_array.c
+++ b/tools/lib/h5diff_array.c
@@ -210,13 +210,17 @@ hsize_t diff_array( void *_mem1,
/* get the size. */
size = H5Tget_size( m_type );
- acc[rank-1]=1;
- for(j=(rank-2); j>=0; j--)
+ if ( rank > 0 )
{
- acc[j]=acc[j+1]*dims[j+1];
+
+ acc[rank-1]=1;
+ for(j=(rank-2); j>=0; j--)
+ {
+ acc[j]=acc[j+1]*dims[j+1];
+ }
+ for ( j = 0; j < rank; j++)
+ pos[j]=0;
}
- for ( j = 0; j < rank; j++)
- pos[j]=0;
if(H5Tis_variable_str(m_type))
{
@@ -5574,6 +5578,10 @@ void print_pos( int *ph, /* print header */
}
parallel_print("]" );
}
+ else
+ {
+ parallel_print(" ");
+ }
}
/*-------------------------------------------------------------------------