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
acl_test: use _putenv_s() instead of _putenv() on Windows
_putenv_s() is recommended over _putenv() as a more secure variant,
though the exact benefits are not detailed. Unlike the unsafe putenv()
on Linux, _putenv() on Windows does appear to copy its argument. Use
_putenv_s() anyway since it provides the same interface as setenv().
Signed-off-by: Peter Colberg <[email protected]>
0 commit comments