summaryrefslogtreecommitdiffstats
path: root/src/H5PLint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-12-13 23:31:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-12-13 23:31:00 (GMT)
commit247a6afb7e7fb1bc08a31cb7edbbea5f5b44eb93 (patch)
treed1333820e27591777081f167140313091b5afb73 /src/H5PLint.c
parentafdf3094cc6577bacd004f2cb4b553b63bf503f7 (diff)
downloadhdf5-247a6afb7e7fb1bc08a31cb7edbbea5f5b44eb93.zip
hdf5-247a6afb7e7fb1bc08a31cb7edbbea5f5b44eb93.tar.gz
hdf5-247a6afb7e7fb1bc08a31cb7edbbea5f5b44eb93.tar.bz2
Fix plugin code from referencing invalid key ID value, and also switch from
strtok() to strtok_r() to avoid possible interference with / to application use of strtok().
Diffstat (limited to 'src/H5PLint.c')
-rw-r--r--src/H5PLint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLint.c b/src/H5PLint.c
index bbe71fe..ded315a 100644
--- a/src/H5PLint.c
+++ b/src/H5PLint.c
@@ -262,7 +262,7 @@ H5PL_load(H5PL_type_t type, const H5PL_key_t *key)
/* Set up the search parameters */
search_params.type = type;
- search_params.key.id = key->id;
+ search_params.key = key;
/* Search in the table of already loaded plugin libraries */
if(H5PL__find_plugin_in_cache(&search_params, &found, &plugin_info) < 0)