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

git-svn-id: https://pykd.svn.codeplex.com/svn@84627 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2013-08-11 09:35:23 +00:00 committed by Mikhail I. Izmestev
parent 60c71e8ff1
commit ea8a8cda98

View File

@ -8,9 +8,9 @@ namespace pykd {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
ExceptionInfo::ExceptionInfo(ULONG FirstChance, const EXCEPTION_RECORD64 &Exception) ExceptionInfo::ExceptionInfo(ULONG FirstChance_, const EXCEPTION_RECORD64 &Exception)
{ {
FirstChance = FirstChance != FALSE; FirstChance = FirstChance_ != 0;
ExceptionCode = Exception.ExceptionCode; ExceptionCode = Exception.ExceptionCode;
ExceptionFlags = Exception.ExceptionFlags; ExceptionFlags = Exception.ExceptionFlags;