hdf5 reader: fix return value
Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
This commit is contained in:
parent
274800054f
commit
dea4065ca1
@ -394,12 +394,12 @@ bool HDF5_File_Reader::ReadTimeSteps(vector<unsigned int> ×tep, vector<stri
|
||||
float**** HDF5_File_Reader::GetTDVectorData(size_t idx, float &time, unsigned int data_size[])
|
||||
{
|
||||
if (IsValid()==false)
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
hid_t hdf5_file;
|
||||
hid_t TD_grp;
|
||||
if (OpenGroup(hdf5_file, TD_grp, "/FieldData/TD")==false)
|
||||
return false;
|
||||
return NULL;
|
||||
|
||||
hsize_t numObj;
|
||||
if (H5Gget_num_objs(TD_grp,&numObj)<0)
|
||||
|
Loading…
Reference in New Issue
Block a user