mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
[0.2.x] fixed : issue #12559 ( wrong enum value )
git-svn-id: https://pykd.svn.codeplex.com/svn@86720 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
6f7c574b6b
commit
aefe5b4706
@ -383,7 +383,7 @@ void DiaSymbol::getValue( BaseTypeVariant &btv )
|
||||
break;
|
||||
|
||||
case VT_BOOL:
|
||||
btv = !!vtValue.iVal;
|
||||
btv = !!vtValue.boolVal;
|
||||
break;
|
||||
|
||||
case VT_I2:
|
||||
@ -391,7 +391,7 @@ void DiaSymbol::getValue( BaseTypeVariant &btv )
|
||||
break;
|
||||
|
||||
case VT_UI2:
|
||||
btv = (ULONG)vtValue.iVal;
|
||||
btv = (ULONG)vtValue.uiVal;
|
||||
break;
|
||||
|
||||
case VT_I4:
|
||||
|
Loading…
Reference in New Issue
Block a user