mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-18 17:40:55 +08:00
Correct VOL connector env string parsing issue (#2350)
* Correct concurrency bugs when running tests, along with a bugfix & small warning cleanup. * Committing clang-format changes * Allow spaces (and tabs) in VOL connector info string from environment variable. Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: AWS ParallelCluster user <ec2-user@ip-10-0-0-65.us-east-2.compute.internal> Co-authored-by: Koziol <qkoziol@88665a374c70.ant.amazon.com>
This commit is contained in:
parent
83f81a6422
commit
c2e3c732f0
@ -425,7 +425,7 @@ H5VL__set_def_conn(void)
|
||||
} /* end else */
|
||||
|
||||
/* Was there any connector info specified in the environment variable? */
|
||||
if (NULL != (tok = HDstrtok_r(NULL, " \t\n\r", &lasts)))
|
||||
if (NULL != (tok = HDstrtok_r(NULL, "\n\r", &lasts)))
|
||||
if (H5VL__connector_str_to_info(tok, connector_id, &vol_info) < 0)
|
||||
HGOTO_ERROR(H5E_VOL, H5E_CANTDECODE, FAIL, "can't deserialize connector info")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user