[0.2.x] fixed : issue #12017 ( Exception Always First Chance )

git-svn-id: https://pykd.svn.codeplex.com/svn@84628 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2013-08-11 10:05:42 +00:00 committed by Mikhail I. Izmestev
parent ea8a8cda98
commit 1fb1f483dd

View File

@ -38,16 +38,15 @@ std::string ExceptionInfo::print() const
sstream << "FirstChance= " << (FirstChance ? "True" : "False") << std::endl;
sstream << std::hex;
sstream << "ExceptionCode= 0x" << ExceptionCode << std::endl;
sstream << "ExceptionFlags= 0x" << ExceptionFlags << std::endl;
sstream << "ExceptionRecord= 0x" << ExceptionRecord << std::endl;
sstream << "ExceptionAddress= 0x" << ExceptionAddress << std::endl;
sstream << "ExceptionCode= 0x" << std::hex << ExceptionCode << std::endl;
sstream << "ExceptionFlags= 0x" << std::hex << ExceptionFlags << std::endl;
sstream << "ExceptionRecord= 0x" << std::hex << ExceptionRecord << std::endl;
sstream << "ExceptionAddress= 0x" << std::hex << ExceptionAddress << std::endl;
for (ULONG i = 0; i < Parameters.size(); ++i)
{
sstream << "Param[" << std::dec << i << "]= 0x";
sstream << Parameters[i] << std::endl;
sstream << std::hex << Parameters[i] << std::endl;
}
return sstream.str();