Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Slowroll:Build:1
curl
curl-secure-getenv.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File curl-secure-getenv.patch of Package curl
Index: curl-8.11.0/lib/getenv.c =================================================================== --- curl-8.11.0.orig/lib/getenv.c +++ curl-8.11.0/lib/getenv.c @@ -29,6 +29,14 @@ #include "memdebug.h" +#ifndef HAVE_SECURE_GETENV +# ifdef HAVE___SECURE_GETENV +# define secure_getenv __secure_getenv +# else +# error neither secure_getenv nor __secure_getenv is available +# endif +#endif + static char *GetEnv(const char *variable) { #if defined(_WIN32_WCE) || defined(CURL_WINDOWS_UWP) || \ @@ -69,7 +77,7 @@ static char *GetEnv(const char *variable /* else rc is bytes needed, try again */ } #else - char *env = getenv(variable); + char *env = secure_getenv(variable); return (env && env[0]) ? strdup(env) : NULL; #endif } Index: curl-8.11.0/configure.ac =================================================================== --- curl-8.11.0.orig/configure.ac +++ curl-8.11.0/configure.ac @@ -5370,6 +5370,8 @@ fi CURL_PREPARE_CONFIGUREHELP_PM +AC_CHECK_FUNCS([__secure_getenv secure_getenv]) + AC_CONFIG_FILES([\ Makefile \ docs/Makefile \
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor