gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 33/220: getenv: support up to 4K environment variab


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 33/220: getenv: support up to 4K environment variable contents on windows
Date: Thu, 12 Sep 2019 17:26:33 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit b7d1264647eade0dae9f40cd3987071e557753ae
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Jul 30 20:26:59 2019 +0200

    getenv: support up to 4K environment variable contents on windows
    
    Reported-by: Michal Čaplygin
    Fixes #4174
    Closes #4175
---
 lib/getenv.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/getenv.c b/lib/getenv.c
index 89d181de3..e444a6a3a 100644
--- a/lib/getenv.c
+++ b/lib/getenv.c
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2012, Daniel Stenberg, <address@hidden>, et al.
+ * Copyright (C) 1998 - 2019, Daniel Stenberg, <address@hidden>, 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)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]