[svn-r8746] Purpose:

Fixing minor bug

Description
    The new function H5File::getFileSize was missing a return statement.
    Added one.

Platforms:
    SunOS 5.7 (arabica)
    Linux 2.4 (eirene)
This commit is contained in:
Binh-Minh Ribler 2004-06-27 23:23:31 -05:00
parent a89057a2cd
commit 52d1e37e8f

View File

@ -492,11 +492,12 @@ hid_t H5File::getLocId() const
//--------------------------------------------------------------------------
haddr_t H5File::getFileSize(void) const
{
haddr_t ret_value = H5Fget_filesize(id);
if( ret_value < 0 )
haddr_t file_size = H5Fget_filesize(id);
if( file_size < 0 )
{
throw FileIException("H5File::getFileSize", "H5Fget_filesize failed");
}
return(file_size);
}
//--------------------------------------------------------------------------