summaryrefslogtreecommitdiffstats
path: root/src/H5system.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-13 16:33:35 (GMT)
committerGitHub <noreply@github.com>2023-06-13 16:33:35 (GMT)
commit4462f730585558532b38f14404333fdeb0033335 (patch)
tree3a7e6613a57aab1acaeec5724da61f7aba15629b /src/H5system.c
parentd4605919f970e2f84d00d802f1b01db1b98fafc6 (diff)
downloadhdf5-4462f730585558532b38f14404333fdeb0033335.zip
hdf5-4462f730585558532b38f14404333fdeb0033335.tar.gz
hdf5-4462f730585558532b38f14404333fdeb0033335.tar.bz2
clang-tidy clang-analyzer-core issues addressed (#3113)
src/H5system.c:1293:13: warning: Dereference of null pointer [clang-analyzer-core.NullDereference] src/H5trace.c:4048:17: warning: Passed-by-value struct argument contains uninitialized data (e.g., via the field chain: 'initial.user') [clang-analyzer-core.CallAndMessage]
Diffstat (limited to 'src/H5system.c')
-rw-r--r--src/H5system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5system.c b/src/H5system.c
index a13a5e8..e80b710 100644
--- a/src/H5system.c
+++ b/src/H5system.c
@@ -1290,7 +1290,7 @@ H5_get_option(int argc, const char *const *argv, const char *opts, const struct
}
}
- if (l_opts[i].name == NULL) {
+ if (l_opts && l_opts[i].name == NULL) {
/* exhausted all of the l_opts we have and still didn't match */
if (H5_opterr)
HDfprintf(stderr, "%s: unknown option \"%s\"\n", argv[0], arg);