bcb6 > AnsiString関連のメモリリーク


BCB6のメモリリーク関連
http://www.tek-tips.com/viewthread.cfm?qid=1384862

   for(j = 0; j < hmax; j++)
    {
        MyString strTest2 = "test";
        strTest2 += MyString("Random test: ") + "test3";
        //OutputDebugString(IntToStr(j).c_str());
    }

において、MyStringの宣言がfor()内にある時におかしくなるような記載があった。

XE4や最近のバージョンの振舞は未整理。