summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2002-01-09 19:24:50 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2002-01-09 19:24:50 (GMT)
commit68f5361a73029324216cadc0e5f880d57c18788d (patch)
tree372c08582ad0b8723d0fe6ea6f3f2fc5491cdece
parentca7c14ea30bfca2ef5f9319b075ad8a3049c8b55 (diff)
downloadhdf5-68f5361a73029324216cadc0e5f880d57c18788d.zip
hdf5-68f5361a73029324216cadc0e5f880d57c18788d.tar.gz
hdf5-68f5361a73029324216cadc0e5f880d57c18788d.tar.bz2
[svn-r4807]
Purpose: Bug fix Description: In several if statements, '>' was used in place of '<='. This caused exceptions thrown inappropriately. Replaced '>' by '<=' where applicable. Platforms tested: SunOS 5.7 (arabica) Linux 6.2 (eirene) Windows 2000
-rw-r--r--c++/src/H5CommonFG.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp
index 80cfb66..b387b82 100644
--- a/c++/src/H5CommonFG.cpp
+++ b/c++/src/H5CommonFG.cpp
@@ -48,7 +48,7 @@ Group CommonFG::createGroup( const char* name, size_t size_hint ) const
hid_t group_id = H5Gcreate( getLocId(), name, size_hint );
// If the creation of the group failed, throw an exception
- if( group_id > 0 )
+ if( group_id <= 0 )
{
throwException("createGroup", "H5Gcreate failed");
}
@@ -97,7 +97,9 @@ DataSet CommonFG::createDataSet( const char* name, const DataType& data_type, co
// If the creation of the dataset failed, throw an exception
if( dataset_id <= 0 )
+ {
throwException("createDataSet", "H5Dcreate failed");
+ }
// No failure, create and return the DataSet object
DataSet dataset( dataset_id );