mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 09:21:50 -05:00
getenv: support up to 4K environment variable contents on windows
Reported-by: Michal Čaplygin Fixes #4174 Closes #4175
This commit is contained in:
parent
84aba180e2
commit
b7d1264647
@ -5,7 +5,7 @@
|
||||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
@ -35,7 +35,7 @@ char *GetEnv(const char *variable)
|
||||
return NULL;
|
||||
#else
|
||||
#ifdef WIN32
|
||||
char env[MAX_PATH]; /* MAX_PATH is from windef.h */
|
||||
char env[4096];
|
||||
char *temp = getenv(variable);
|
||||
env[0] = '\0';
|
||||
if(temp != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user