mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
[svn-r3337]
Purpose: Small bug fix Description: A stub function has returned type hsize_t but returns -1. Solution: Changed returned value from -1 to 0 Platforms tested: Solaris (arabica)
This commit is contained in:
parent
11efb889c6
commit
b1ac03cdb5
@ -102,7 +102,7 @@ hsize_t DataSet::getVlenBufSize( DataType& type, DataSpace& space ) const
|
||||
//{
|
||||
//throw DataSetIException();
|
||||
//}
|
||||
return (-1);
|
||||
return (0);
|
||||
}
|
||||
|
||||
// Reclaims VL datatype memory buffers.
|
||||
|
Loading…
Reference in New Issue
Block a user