diff options
author | hobbs <hobbs> | 2002-10-14 22:25:10 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-10-14 22:25:10 (GMT) |
commit | 8ab3cec635aaa48a98d3e2eb1736fa2e1a56ec6d (patch) | |
tree | afbb8b1edd843c2e67b90d7e87bebe45a6d0d6c3 /generic/tclEnv.c | |
parent | 4a44772df21154da586138baef4290818aa03110 (diff) | |
download | tcl-8ab3cec635aaa48a98d3e2eb1736fa2e1a56ec6d.zip tcl-8ab3cec635aaa48a98d3e2eb1736fa2e1a56ec6d.tar.gz tcl-8ab3cec635aaa48a98d3e2eb1736fa2e1a56ec6d.tar.bz2 |
* generic/tclEnv.c (Tcl_PutEnv): correct possible mem leak.
[Patch #623269] (brouwers)
Diffstat (limited to 'generic/tclEnv.c')
-rw-r--r-- | generic/tclEnv.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/generic/tclEnv.c b/generic/tclEnv.c index 3702ff4..e0e2739 100644 --- a/generic/tclEnv.c +++ b/generic/tclEnv.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEnv.c,v 1.18 2002/09/27 00:50:10 hobbs Exp $ + * RCS: @(#) $Id: tclEnv.c,v 1.19 2002/10/14 22:25:10 hobbs Exp $ */ #include "tclInt.h" @@ -326,7 +326,6 @@ Tcl_PutEnv(string) * form NAME=value. (native) */ { Tcl_DString nameString; - int nameLength; CONST char *name; char *value; @@ -342,16 +341,12 @@ Tcl_PutEnv(string) name = Tcl_ExternalToUtfDString(NULL, string, -1, &nameString); value = strchr(name, '='); - if (value == NULL) { - return 0; - } - nameLength = value - name; - if (nameLength == 0) { - return 0; + + if ((value != NULL) && (value != name)) { + value[0] = '\0'; + TclSetEnv(name, value+1); } - value[0] = '\0'; - TclSetEnv(name, value+1); Tcl_DStringFree(&nameString); return 0; } |