You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package's Errno type is using strerror to produce error strings. For unknown error numbers strerror writes a string into a static buffer and returns it, but whether this static buffer is thread local is unspecified. Using strerror_r would guarantee thread safety even for unknown error codes.
The text was updated successfully, but these errors were encountered:
This package's
Errno
type is usingstrerror
to produce error strings. For unknown error numbersstrerror
writes a string into a static buffer and returns it, but whether this static buffer is thread local is unspecified. Usingstrerror_r
would guarantee thread safety even for unknown error codes.The text was updated successfully, but these errors were encountered: