* environ.cc (win_env::add_cache): Don't add variables to the environment
during initialization.
This commit is contained in:
parent
20e84812d2
commit
77ae8757f7
|
@ -1,3 +1,8 @@
|
||||||
|
2005-12-28 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* environ.cc (win_env::add_cache): Don't add variables to the
|
||||||
|
environment during initialization.
|
||||||
|
|
||||||
2005-12-27 Corinna Vinschen <corinna@vinschen.de>
|
2005-12-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* exceptions.cc (_cygtls::handle_exceptions): Drop redundant `break'.
|
* exceptions.cc (_cygtls::handle_exceptions): Drop redundant `break'.
|
||||||
|
|
|
@ -116,7 +116,7 @@ win_env::add_cache (const char *in_posix, const char *in_native)
|
||||||
towin32 (in_posix, native + namelen);
|
towin32 (in_posix, native + namelen);
|
||||||
}
|
}
|
||||||
MALLOC_CHECK;
|
MALLOC_CHECK;
|
||||||
if (immediate)
|
if (immediate && cygwin_finished_initializing)
|
||||||
{
|
{
|
||||||
char s[namelen];
|
char s[namelen];
|
||||||
size_t n = namelen - 1;
|
size_t n = namelen - 1;
|
||||||
|
|
Loading…
Reference in New Issue