mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
[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:
parent
ea8a8cda98
commit
1fb1f483dd
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user