summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2011-07-19 22:45:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2011-07-19 22:45:55 (GMT)
commit27775305d6a0d314b65457df5c3b4fcb8a67677a (patch)
tree8b2c809122d17a85c041ba391dcf30daeb5f961d /tools
parent338fdac20dc8bbc09aa1701f092fe28013aa6aa7 (diff)
downloadhdf5-27775305d6a0d314b65457df5c3b4fcb8a67677a.zip
hdf5-27775305d6a0d314b65457df5c3b4fcb8a67677a.tar.gz
hdf5-27775305d6a0d314b65457df5c3b4fcb8a67677a.tar.bz2
[svn-r21125] Description:
Correct char arrays that were too small for strings defined. Also, change cleanup to work correctly. Tested on: Mac OS X/32 10.6.8 (amazon) w/debug FreeBSD/32 8.2 (loyalty) w/debug FreeBSD/64 8.2 (freedom) w/debug Linux/64 2.6 (heiwa) w/debug Linux/64 2.6 (ember) w/parallel
Diffstat (limited to 'tools')
-rw-r--r--tools/h5repack/h5repacktst.c62
1 files changed, 31 insertions, 31 deletions
diff --git a/tools/h5repack/h5repacktst.c b/tools/h5repack/h5repacktst.c
index 0f8be17..7be7b32 100644
--- a/tools/h5repack/h5repacktst.c
+++ b/tools/h5repack/h5repacktst.c
@@ -3423,7 +3423,7 @@ int write_dset_in(hid_t loc_id,
/* create 1D attributes with dimension [2], 2 elements */
hsize_t dims[1]={2};
hsize_t dims1r[1]={2};
- char buf1[2][2]= {"ab","de"}; /* string */
+ char buf1[2][3]= {"ab","de"}; /* string */
char buf2[2]= {1,2}; /* bitfield, opaque */
s_t buf3[2]= {{1,2},{3,4}}; /* compound */
hobj_ref_t buf4[2]; /* reference */
@@ -3437,7 +3437,7 @@ int write_dset_in(hid_t loc_id,
/* create 2D attributes with dimension [3][2], 6 elements */
hsize_t dims2[2]={3,2};
hsize_t dims2r[2]={1,1};
- char buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; /* string */
+ char buf12[6][3]= {"ab","cd","ef","gh","ij","kl"}; /* string */
char buf22[3][2]= {{1,2},{3,4},{5,6}}; /* bitfield, opaque */
s_t buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; /* compound */
hobj_ref_t buf42[1][1]; /* reference */
@@ -3449,7 +3449,7 @@ int write_dset_in(hid_t loc_id,
/* create 3D attributes with dimension [4][3][2], 24 elements */
hsize_t dims3[3]={4,3,2};
hsize_t dims3r[3]={1,1,1};
- char buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq",
+ char buf13[24][3]= {"ab","cd","ef","gh","ij","kl","mn","pq",
"rs","tu","vw","xz","AB","CD","EF","GH",
"IJ","KL","MN","PQ","RS","TU","VW","XZ"}; /* string */
char buf23[4][3][2]; /* bitfield, opaque */
@@ -4296,7 +4296,7 @@ int write_attr_in(hid_t loc_id,
/* create 1D attributes with dimension [2], 2 elements */
hsize_t dims[1]={2};
- char buf1[2][2]= {"ab","de"}; /* string */
+ char buf1[2][3]= {"ab","de"}; /* string */
char buf2[2]= {1,2}; /* bitfield, opaque */
s_t buf3[2]= {{1,2},{3,4}}; /* compound */
hobj_ref_t buf4[2]; /* reference */
@@ -4309,7 +4309,7 @@ int write_attr_in(hid_t loc_id,
/* create 2D attributes with dimension [3][2], 6 elements */
hsize_t dims2[2]={3,2};
- char buf12[6][2]= {"ab","cd","ef","gh","ij","kl"}; /* string */
+ char buf12[6][3]= {"ab","cd","ef","gh","ij","kl"}; /* string */
char buf22[3][2]= {{1,2},{3,4},{5,6}}; /* bitfield, opaque */
s_t buf32[6]= {{1,2},{3,4},{5,6},{7,8},{9,10},{11,12}}; /* compound */
hobj_ref_t buf42[3][2]; /* reference */
@@ -4321,7 +4321,7 @@ int write_attr_in(hid_t loc_id,
/* create 3D attributes with dimension [4][3][2], 24 elements */
hsize_t dims3[3]={4,3,2};
- char buf13[24][2]= {"ab","cd","ef","gh","ij","kl","mn","pq",
+ char buf13[24][3]= {"ab","cd","ef","gh","ij","kl","mn","pq",
"rs","tu","vw","xz","AB","CD","EF","GH",
"IJ","KL","MN","PQ","RS","TU","VW","XZ"}; /* string */
char buf23[4][3][2]; /* bitfield, opaque */
@@ -6656,49 +6656,49 @@ static herr_t make_complex_attr_references(hid_t loc_id)
out:
/* release resources */
- if (objgid < 0)
+ if (objgid > 0)
H5Gclose(objgid);
- if (objsid < 0)
+ if (objsid > 0)
H5Sclose(objsid);
- if (objdid < 0)
+ if (objdid > 0)
H5Dclose(objdid);
- if (objtid < 0)
+ if (objtid > 0)
H5Tclose(objtid);
- if (main_gid < 0)
+ if (main_gid > 0)
H5Gclose(main_gid);
- if (main_sid < 0)
+ if (main_sid > 0)
H5Sclose(main_sid);
- if (main_did < 0)
+ if (main_did > 0)
H5Dclose(main_did);
/* comp obj ref */
- if (comp_objref_tid < 0)
+ if (comp_objref_tid > 0)
H5Tclose(comp_objref_tid);
- if (comp_objref_aid < 0)
+ if (comp_objref_aid > 0)
H5Aclose(comp_objref_aid);
- if (comp_objref_attr_sid < 0)
+ if (comp_objref_attr_sid > 0)
H5Sclose(comp_objref_attr_sid);
/* comp region ref */
- if (comp_regref_tid < 0)
+ if (comp_regref_tid > 0)
H5Tclose(comp_regref_tid);
- if (comp_regref_aid < 0)
+ if (comp_regref_aid > 0)
H5Aclose(comp_regref_aid);
- if (comp_regref_attr_sid < 0)
+ if (comp_regref_attr_sid > 0)
H5Sclose(comp_regref_attr_sid);
/* vlen obj ref */
- if (vlen_objref_attr_id < 0);
- H5Aclose (vlen_objref_attr_id);
- if (vlen_objref_attr_sid < 0);
- H5Sclose (vlen_objref_attr_sid);
- if (vlen_objref_attr_tid < 0);
- H5Tclose (vlen_objref_attr_tid);
+ if (vlen_objref_attr_id > 0)
+ H5Aclose(vlen_objref_attr_id);
+ if (vlen_objref_attr_sid > 0)
+ H5Sclose(vlen_objref_attr_sid);
+ if (vlen_objref_attr_tid > 0)
+ H5Tclose(vlen_objref_attr_tid);
/* vlen region ref */
- if (vlen_regref_attr_id < 0);
- H5Aclose (vlen_regref_attr_id);
- if (vlen_regref_attr_sid < 0);
- H5Sclose (vlen_regref_attr_sid);
- if (vlen_regref_attr_tid < 0);
- H5Tclose (vlen_regref_attr_tid);
+ if (vlen_regref_attr_id > 0)
+ H5Aclose(vlen_regref_attr_id);
+ if (vlen_regref_attr_sid > 0)
+ H5Sclose(vlen_regref_attr_sid);
+ if (vlen_regref_attr_tid > 0)
+ H5Tclose(vlen_regref_attr_tid);
return ret;
}