Comment #0 by dlang-bugzilla — 2014-08-24T02:54:23Z
/////////////////////////// testPath.d ///////////////////////////
import std.process;
void main()
{
foreach (n; 0..50)
environment["PATH"] = environment["PATH"] ~ `;C:\Example`;
}
//////////////////////////////////////////////////////////////////
This program will freeze on Win32 and crash on Win64. The stack trace is corrupted, I assume a buffer on the stack is being overflown.
Introduced in https://github.com/D-Programming-Language/phobos/pull/2332
Comment #1 by verylonglogin.reg — 2014-08-24T11:05:44Z