summaryrefslogtreecommitdiffstats
path: root/src/H5FDs3comms.c
diff options
context:
space:
mode:
authorJacob Smith <jake.smith@hdfgroup.org>2020-02-28 23:09:45 (GMT)
committerJacob Smith <jake.smith@hdfgroup.org>2020-02-28 23:09:45 (GMT)
commit46f0de82c7674a28b08e4da3b0149c793b762203 (patch)
treeae499a237995933ac92d3e76725e9ec1343f1fc6 /src/H5FDs3comms.c
parenta34ff89763ddf4998f6b1b8cfbfa38aa3d58468e (diff)
downloadhdf5-46f0de82c7674a28b08e4da3b0149c793b762203.zip
hdf5-46f0de82c7674a28b08e4da3b0149c793b762203.tar.gz
hdf5-46f0de82c7674a28b08e4da3b0149c793b762203.tar.bz2
Fix improper signing key null check. (HDFFV-11015)
Diffstat (limited to 'src/H5FDs3comms.c')
-rw-r--r--src/H5FDs3comms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDs3comms.c b/src/H5FDs3comms.c
index f08e9d5..d9d4c88 100644
--- a/src/H5FDs3comms.c
+++ b/src/H5FDs3comms.c
@@ -1202,7 +1202,7 @@ H5FD_s3comms_s3r_open(const char *url,
if ((region != NULL && *region != '\0') ||
(id != NULL && *id != '\0') ||
- (signing_key != NULL && *signing_key != '\0'))
+ (signing_key != NULL))
{
/* if one exists, all three must exist
*/
@@ -1214,7 +1214,7 @@ H5FD_s3comms_s3r_open(const char *url,
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, NULL,
"secret id cannot be null.\n");
}
- if (signing_key == NULL || signing_key[0] == '\0') {
+ if (signing_key == NULL) {
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, NULL,
"signing key cannot be null.\n");
}