diff options
Diffstat (limited to 'bsd-misc.c')
-rw-r--r-- | bsd-misc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bsd-misc.c b/bsd-misc.c index 99fe29816..83cb0b85d 100644 --- a/bsd-misc.c +++ b/bsd-misc.c | |||
@@ -154,7 +154,10 @@ int setenv(const char *name, const char *value, int overwrite) | |||
154 | 154 | ||
155 | result = putenv(env_string); | 155 | result = putenv(env_string); |
156 | 156 | ||
157 | xfree(env_string); | 157 | /* Putenv doesn't copy the env_string, so we need to keep a copy of it */ |
158 | /* around. This leaks a bit of memory, but it doesn't matter */ | ||
159 | /* for our (OpenSSH port ) use: setenv is only used twice in ssh-agent */ | ||
160 | /* xfree(env_string); */ | ||
158 | 161 | ||
159 | return(result); | 162 | return(result); |
160 | } | 163 | } |