이번버전도 그러길래 보니까 버그가 있네요;;
#ifdef 하다가 실수한 부분이;;;;;
수정버전 빌드해서 올려놉니다.
'자료 > Program' 카테고리의 다른 글
bugtrap bugfix (2) | 2007.04.10 |
---|---|
bugtrap 소스공개 (6) | 2007.04.10 |
Microsoft® Visual Studio® 2005 Service Pack 1 (0) | 2006.12.16 |
스칼렛 2.0 - dds와 알파채널을 지원 하는 이미지뷰어 (0) | 2006.10.18 |
멋진 HeightMap툴 (0) | 2006.10.11 |
Catch all bugs with BugTrap! (3) | 2006.08.03 |
-
-
SymEngine.cpp에서
void CSymEngine::GetErrorLog(CXmlWriter& rXmlWriter, CEnumProcess* pEnumProcess)
{
...
#ifdef _MANAGED
GetAssemblyList(rXmlWriter);
if (bNativeInfo)
{
#endif <- this line is must here but not!!!
if (pEnumProcess != NULL)
GetProcessList(rXmlWriter, pEnumProcess);
#ifdef _MANAGED <- this line is must here but not!!!
}
#endif
}
위의 this line is must here라고 체크 해놓은 부분입니다.
개발자한테 얘기했더니 자기 홈페이지에 수정해서 새로 올려놨다고 하네요
-