Skip to content

Commit

Permalink
Misc warning fixes (#495)
Browse files Browse the repository at this point in the history
* Committing clang-format changes

* Misc warning fixes from Visual Studio

* Committing clang-format changes

* Fixes warnings in swmr.c test

* Committing clang-format changes

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
derobins and github-actions[bot] authored Mar 24, 2021
1 parent 695a4e4 commit df9abfe
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 61 deletions.
4 changes: 2 additions & 2 deletions src/H5system.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,8 @@ Wgetlogin(void)
{

#ifdef H5_HAVE_WINSOCK2_H
long bufferCount = WloginBuffer_count;
if (GetUserName(Wlogin_buffer, &bufferCount) == 0)
DWORD bufferCount = WloginBuffer_count;
if (GetUserName(Wlogin_buffer, &bufferCount) != 0)
return (Wlogin_buffer);
else
#endif /* H5_HAVE_WINSOCK2_H */
Expand Down
2 changes: 1 addition & 1 deletion src/H5trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -3884,7 +3884,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
FILE * out = H5_debug_g.trace;
static hbool_t is_first_invocation = TRUE;
H5_timer_t function_timer = {{0}, {0}, {0}, FALSE};
H5_timevals_t function_times;
H5_timevals_t function_times = {0.0, 0.0, 0.0};
static H5_timer_t running_timer;
H5_timevals_t running_times;
static int current_depth = 0;
Expand Down
34 changes: 23 additions & 11 deletions test/swmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -847,14 +847,17 @@ test_metadata_read_attempts(hid_t in_fapl)
static int
test_metadata_read_retry_info(hid_t in_fapl)
{
hid_t fapl, new_fapl; /* File access property list */
hid_t fid, fid1; /* File IDs */
hid_t fapl = H5I_INVALID_HID; /* File access property list */
hid_t new_fapl = H5I_INVALID_HID; /* File access property list */
hid_t fid = H5I_INVALID_HID; /* File ID */
hid_t fid1 = H5I_INVALID_HID; /* File ID */
H5F_retry_info_t info, info1; /* The collection of metadata retries */
H5F_t * f = NULL, *f1 = NULL; /* Internal file object pointers */
unsigned i, j, n; /* Local index variables */
hid_t did1, did2; /* Dataset IDs */
hid_t sid; /* Dataspace ID */
hid_t dcpl; /* Dataset creation property list */
hid_t did1 = H5I_INVALID_HID; /* Dataset ID */
hid_t did2 = H5I_INVALID_HID; /* Dataset ID */
hid_t sid = H5I_INVALID_HID; /* Dataspace ID */
hid_t dcpl = H5I_INVALID_HID; /* Dataset creation property list */
hsize_t dims[2] = {6, 10}; /* Dataset dimensions */
char filename[NAME_BUF_SIZE]; /* File name */
int buf[6][10], chkbuf1[6][10], chkbuf2[6][10]; /* Buffers for data */
Expand Down Expand Up @@ -1623,7 +1626,7 @@ test_start_swmr_write(hid_t in_fapl, hbool_t new_format)
FAIL_STACK_ERROR

/* Should be 100 */
if (attempts != (new_format ? H5F_METADATA_READ_ATTEMPTS : H5F_SWMR_METADATA_READ_ATTEMPTS))
if (attempts != (unsigned int)(new_format ? H5F_METADATA_READ_ATTEMPTS : H5F_SWMR_METADATA_READ_ATTEMPTS))
TEST_ERROR;

/* Close the property list */
Expand Down Expand Up @@ -4499,8 +4502,9 @@ test_file_lock_same(hid_t in_fapl)
static int
test_file_lock_swmr_same(hid_t in_fapl)
{
hid_t fid, fid2; /* File IDs */
hid_t fapl; /* File access property list */
hid_t fid = H5I_INVALID_HID; /* File IDs */
hid_t fid2 = H5I_INVALID_HID;
hid_t fapl = H5I_INVALID_HID; /* File access property list */
char filename[NAME_BUF_SIZE]; /* file name */

/* Output message about test being performed */
Expand Down Expand Up @@ -6556,10 +6560,18 @@ test_swmr_vfd_flag(void)
static int
test_bug_refresh(hid_t in_fapl)
{
hid_t fid = -1; /* File ID */
hid_t fapl;
hid_t fid = H5I_INVALID_HID;
hid_t fapl = H5I_INVALID_HID;
H5F_t *f;
hid_t gid1, gid2, gid3, gid4, gid5, gid6, gid7, gid8, gid9;
hid_t gid1 = H5I_INVALID_HID;
hid_t gid2 = H5I_INVALID_HID;
hid_t gid3 = H5I_INVALID_HID;
hid_t gid4 = H5I_INVALID_HID;
hid_t gid5 = H5I_INVALID_HID;
hid_t gid6 = H5I_INVALID_HID;
hid_t gid7 = H5I_INVALID_HID;
hid_t gid8 = H5I_INVALID_HID;
hid_t gid9 = H5I_INVALID_HID;
char filename[NAME_BUF_SIZE]; /* File name */

/* Create a copy of the input parameter in_fapl */
Expand Down
48 changes: 24 additions & 24 deletions test/tfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -5829,7 +5829,7 @@ test_libver_bounds_super_create(hid_t fapl, hid_t fcpl, htri_t is_swmr, htri_t n
/* Get the internal file pointer if the create succeeds */
if (fid >= 0) {
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");
}

/* Retrieve the low/high bounds */
Expand Down Expand Up @@ -6005,7 +6005,7 @@ test_libver_bounds_super_open(hid_t fapl, hid_t fcpl, htri_t is_swmr, htri_t non

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* The file's superblock version */
super_vers = f->shared->sblock->super_vers;
Expand Down Expand Up @@ -6046,7 +6046,7 @@ test_libver_bounds_super_open(hid_t fapl, hid_t fcpl, htri_t is_swmr, htri_t non
/* Get the internal file pointer if the open succeeds */
if (fid >= 0) {
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");
}

/* Verify the file open succeeds or fails */
Expand Down Expand Up @@ -6224,7 +6224,7 @@ test_libver_bounds_obj(hid_t fapl)

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* Create a group in the file */
gid = H5Gcreate2(fid, GRP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
Expand Down Expand Up @@ -6332,7 +6332,7 @@ test_libver_bounds_dataset(hid_t fapl)

/* Get the internal dataset pointer */
dset = (H5D_t *)H5VL_object(did);
CHECK(dset, NULL, "H5VL_object");
CHECK_PTR(dset, "H5VL_object");

/* Verify version for layout and fill value messages */
if (low == H5F_LIBVER_EARLIEST) {
Expand Down Expand Up @@ -6380,7 +6380,7 @@ test_libver_bounds_dataset(hid_t fapl)

/* Get the internal dataset pointer */
dset = (H5D_t *)H5VL_object(did);
CHECK(dset, NULL, "H5VL_object");
CHECK_PTR(dset, "H5VL_object");

/* Verify layout message version and chunk indexing type */
VERIFY(dset->shared->layout.version, H5O_LAYOUT_VERSION_4, "H5O_layout_ver_bounds");
Expand Down Expand Up @@ -6442,15 +6442,15 @@ test_libver_bounds_dataset(hid_t fapl)

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* Create the chunked dataset */
did = H5Dcreate2(fid, DSETC, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT);
CHECK(did, H5I_INVALID_HID, "H5Dcreate2");

/* Get the internal file pointer */
dset = (H5D_t *)H5VL_object(did);
CHECK(dset, NULL, "H5VL_object");
CHECK_PTR(dset, "H5VL_object");

/* Verify the dataset's layout, fill value and filter pipeline message versions */
/* Also verify the chunk indexing type */
Expand Down Expand Up @@ -6571,7 +6571,7 @@ test_libver_bounds_dataspace(hid_t fapl)
sid = H5Dget_space(did);
CHECK(sid, H5I_INVALID_HID, "H5Dget_space");
space = (H5S_t *)H5I_object(sid);
CHECK(space, NULL, "H5I_object");
CHECK_PTR(space, "H5I_object");

/* Verify the dataspace version */
VERIFY(space->extent.version, H5O_sdspace_ver_bounds[low], "H5O_sdspace_ver_bounds");
Expand All @@ -6588,7 +6588,7 @@ test_libver_bounds_dataspace(hid_t fapl)
sid_null = H5Dget_space(did_null);
CHECK(sid_null, H5I_INVALID_HID, "H5Dget_space");
space_null = (H5S_t *)H5I_object(sid_null);
CHECK(space_null, NULL, "H5I_object");
CHECK_PTR(space_null, "H5I_object");

/* Verify the dataspace version */
VERIFY(space_null->extent.version, H5O_SDSPACE_VERSION_2, "H5O_sdspace_ver_bounds");
Expand Down Expand Up @@ -6666,7 +6666,7 @@ test_libver_bounds_dataspace(hid_t fapl)

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* Create the chunked dataset */
did = H5Dcreate2(fid, DSETA, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT);
Expand All @@ -6676,7 +6676,7 @@ test_libver_bounds_dataspace(hid_t fapl)
tmp_sid = H5Dget_space(did);
CHECK(tmp_sid, H5I_INVALID_HID, "H5Dget_space");
tmp_space = (H5S_t *)H5I_object(tmp_sid);
CHECK(tmp_space, NULL, "H5I_object");
CHECK_PTR(tmp_space, "H5I_object");

/* Create the compact dataset */
did_compact = H5Dcreate2(fid, DSETB, H5T_NATIVE_INT, sid_compact, H5P_DEFAULT, dcpl_compact,
Expand All @@ -6687,7 +6687,7 @@ test_libver_bounds_dataspace(hid_t fapl)
tmp_sid_compact = H5Dget_space(did_compact);
CHECK(tmp_sid_compact, H5I_INVALID_HID, "H5Dget_space");
tmp_space_compact = (H5S_t *)H5I_object(tmp_sid_compact);
CHECK(tmp_space_compact, NULL, "H5I_object");
CHECK_PTR(tmp_space_compact, "H5I_object");

/* Create the contiguous dataset */
did_contig =
Expand All @@ -6698,7 +6698,7 @@ test_libver_bounds_dataspace(hid_t fapl)
tmp_sid_contig = H5Dget_space(did_contig);
CHECK(tmp_sid_contig, H5I_INVALID_HID, "H5Dget_space");
tmp_space_contig = (H5S_t *)H5I_object(tmp_sid_contig);
CHECK(tmp_space_contig, NULL, "H5I_object");
CHECK_PTR(tmp_space_contig, "H5I_object");

/* Verify versions for the three dataspaces */
VERIFY(tmp_space->extent.version, H5O_sdspace_ver_bounds[f->shared->low_bound],
Expand Down Expand Up @@ -6922,7 +6922,7 @@ test_libver_bounds_datatype_check(hid_t fapl, hid_t tid)

/* Get the internal datatype pointer */
dtype = (H5T_t *)H5I_object(dtid);
CHECK(dtype, NULL, "H5I_object");
CHECK_PTR(dtype, "H5I_object");

/* Verify the datatype message version */
/* H5T_COMPOUND, H5T_ENUM, H5T_ARRAY:
Expand Down Expand Up @@ -6996,13 +6996,13 @@ test_libver_bounds_datatype_check(hid_t fapl, hid_t tid)

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* Open the committed datatype */
str_tid = H5Topen2(fid, "datatype", H5P_DEFAULT);
CHECK(str_tid, FAIL, "H5Topen2");
str_dtype = (H5T_t *)H5VL_object(str_tid);
CHECK(str_dtype, NULL, "H5VL_object");
CHECK_PTR(str_dtype, "H5VL_object");

/* Verify the committed datatype message version */
VERIFY(str_dtype->shared->version, H5O_dtype_ver_bounds[H5F_LIBVER_EARLIEST],
Expand All @@ -7022,7 +7022,7 @@ test_libver_bounds_datatype_check(hid_t fapl, hid_t tid)

/* Get the internal datatype pointer */
dtype = (H5T_t *)H5I_object(dtid);
CHECK(dtype, NULL, "H5I_object");
CHECK_PTR(dtype, "H5I_object");

/* Verify the dataset's datatype message version */
/* H5T_COMPOUND, H5T_ENUM, H5T_ARRAY:
Expand Down Expand Up @@ -7155,7 +7155,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get the internal attribute pointer */
attr = (H5A_t *)H5VL_object(aid);
CHECK(attr, NULL, "H5VL_object");
CHECK_PTR(attr, "H5VL_object");

/* Verify the attribute version */
if (low == H5F_LIBVER_EARLIEST)
Expand All @@ -7174,7 +7174,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get the internal attribute pointer */
attr = (H5A_t *)H5VL_object(aid);
CHECK(attr, NULL, "H5VL_object");
CHECK_PTR(attr, "H5VL_object");

/* Verify attribute version */
VERIFY(attr->shared->version, H5O_attr_ver_bounds[low], "H5O_attr_ver_bounds");
Expand All @@ -7195,7 +7195,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get internal attribute pointer */
attr = (H5A_t *)H5VL_object(aid);
CHECK(attr, NULL, "H5VL_object");
CHECK_PTR(attr, "H5VL_object");

/* Verify attribute version */
if (low == H5F_LIBVER_EARLIEST)
Expand Down Expand Up @@ -7260,7 +7260,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get the internal attribute pointer */
attr = (H5A_t *)H5VL_object(aid);
CHECK(attr, NULL, "H5VL_object");
CHECK_PTR(attr, "H5VL_object");

/* Verify the attribute version */
if (low == H5F_LIBVER_EARLIEST)
Expand Down Expand Up @@ -7322,7 +7322,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get the internal file pointer */
f = (H5F_t *)H5VL_object(fid);
CHECK(f, NULL, "H5VL_object");
CHECK_PTR(f, "H5VL_object");

/* Open the group */
gid = H5Gopen2(fid, GRP_NAME, H5P_DEFAULT);
Expand All @@ -7334,7 +7334,7 @@ test_libver_bounds_attributes(hid_t fapl)

/* Get the internal attribute pointer */
attr = (H5A_t *)H5VL_object(aid);
CHECK(attr, NULL, "H5VL_object");
CHECK_PTR(attr, "H5VL_object");

/* Verify the attribute message version */
VERIFY(attr->shared->version, H5O_attr_ver_bounds[f->shared->low_bound],
Expand Down
22 changes: 11 additions & 11 deletions test/th5s.c
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ test_h5s_encode(H5F_libver_t low, H5F_libver_t high)

if (sbuf_size > 0) {
sbuf = (unsigned char *)HDcalloc((size_t)1, sbuf_size);
CHECK(sbuf, NULL, "HDcalloc");
CHECK_PTR(sbuf, "HDcalloc");
}

/* Try decoding bogus buffer */
Expand Down Expand Up @@ -1308,7 +1308,7 @@ test_h5s_encode(H5F_libver_t low, H5F_libver_t high)

if (null_size > 0) {
null_sbuf = (unsigned char *)HDcalloc((size_t)1, null_size);
CHECK(null_sbuf, NULL, "HDcalloc");
CHECK_PTR(null_sbuf, "HDcalloc");
}

/* Encode the null dataspace in the buffer */
Expand Down Expand Up @@ -1344,7 +1344,7 @@ test_h5s_encode(H5F_libver_t low, H5F_libver_t high)

if (scalar_size > 0) {
scalar_buf = (unsigned char *)HDcalloc((size_t)1, scalar_size);
CHECK(scalar_buf, NULL, "HDcalloc");
CHECK_PTR(scalar_buf, "HDcalloc");
}

/* Encode the scalar dataspace in the buffer */
Expand Down Expand Up @@ -1438,7 +1438,7 @@ test_h5s_encode1(void)

if (sbuf_size > 0) {
sbuf = (unsigned char *)HDcalloc((size_t)1, sbuf_size);
CHECK(sbuf, NULL, "HDcalloc");
CHECK_PTR(sbuf, "HDcalloc");
}

/* Try decoding bogus buffer */
Expand Down Expand Up @@ -1500,7 +1500,7 @@ test_h5s_encode1(void)

if (null_size > 0) {
null_sbuf = (unsigned char *)HDcalloc((size_t)1, null_size);
CHECK(null_sbuf, NULL, "HDcalloc");
CHECK_PTR(null_sbuf, "HDcalloc");
}

/* Encode the null dataspace in the buffer */
Expand Down Expand Up @@ -1536,7 +1536,7 @@ test_h5s_encode1(void)

if (scalar_size > 0) {
scalar_buf = (unsigned char *)HDcalloc((size_t)1, scalar_size);
CHECK(scalar_buf, NULL, "HDcalloc");
CHECK_PTR(scalar_buf, "HDcalloc");
}

/* Encode the scalar dataspace in the buffer */
Expand Down Expand Up @@ -1623,7 +1623,7 @@ test_h5s_check_encoding(hid_t in_fapl, hid_t in_sid, uint32_t expected_version,

/* Allocate the buffer for encoding */
buf = (char *)HDmalloc(buf_size);
CHECK(buf, NULL, "H5Dmalloc");
CHECK_PTR(buf, "H5Dmalloc");

/* Encode according to the setting in in_fapl */
ret = H5Sencode2(in_sid, buf, &buf_size, in_fapl);
Expand Down Expand Up @@ -2149,7 +2149,7 @@ test_h5s_encode_length(void)
/* Allocate the buffer */
if (sbuf_size > 0) {
sbuf = (unsigned char *)HDcalloc((size_t)1, sbuf_size);
CHECK(sbuf, NULL, "H5Sencode2");
CHECK_PTR(sbuf, "H5Sencode2");
}

/* Encode the dataspace */
Expand Down Expand Up @@ -3304,7 +3304,7 @@ test_versionbounds(void)

/* Its version should be H5O_SDSPACE_VERSION_1 */
spacep = (H5S_t *)H5I_object(space);
CHECK(spacep, NULL, "H5I_object");
CHECK_PTR(spacep, "H5I_object");
VERIFY(spacep->extent.version, H5O_SDSPACE_VERSION_1, "basic dataspace version bound");

/* Set high bound to V18 */
Expand All @@ -3325,7 +3325,7 @@ test_versionbounds(void)
dset_space = H5Dget_space(dset);
CHECK(dset_space, FAIL, "H5Dget_space");
spacep = (H5S_t *)H5I_object(dset_space);
CHECK(spacep, NULL, "H5I_object");
CHECK_PTR(spacep, "H5I_object");

/* Dataspace version should remain as H5O_SDSPACE_VERSION_1 */
VERIFY(spacep->extent.version, H5O_SDSPACE_VERSION_1, "basic dataspace version bound");
Expand Down Expand Up @@ -3362,7 +3362,7 @@ test_versionbounds(void)
dset_space = H5Dget_space(dset);
CHECK(dset_space, FAIL, "H5Dget_space");
spacep = (H5S_t *)H5I_object(dset_space);
CHECK(spacep, NULL, "H5I_object");
CHECK_PTR(spacep, "H5I_object");

/* Verify the dataspace version */
VERIFY(spacep->extent.version, H5O_sdspace_ver_bounds[low], "upgraded dataspace version");
Expand Down
Loading

0 comments on commit df9abfe

Please sign in to comment.