We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getenv
blosc_compress_ctx
From what I can tell getenv is used in blosc_compress_ctx here:
c-blosc/blosc/blosc.c
Line 1089 in 3455c38
blosc_compress_ctx is supposed to be used in multi-threaded contexts; however, getenv is not threadsafe: https://pubs.opengroup.org/onlinepubs/9699919799.2016edition/functions/getenv.html
The text was updated successfully, but these errors were encountered:
BLOSC_WARN envvar introduced. Return 0 when input size is exceeded.
403d50c
Successfully merging a pull request may close this issue.
From what I can tell
getenv
is used inblosc_compress_ctx
here:c-blosc/blosc/blosc.c
Line 1089 in 3455c38
blosc_compress_ctx
is supposed to be used in multi-threaded contexts; however,getenv
is not threadsafe:https://pubs.opengroup.org/onlinepubs/9699919799.2016edition/functions/getenv.html
The text was updated successfully, but these errors were encountered: