mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed bitset bools for conditional breakpoints
This commit is contained in:
parent
bdc6a17f79
commit
41fb94f1f8
1 changed files with 3 additions and 0 deletions
|
@ -3804,6 +3804,9 @@ bool WinDebugger::CheckConditionalBreakpoint(WdBreakpoint* breakpoint, DbgSubpro
|
||||||
DbgTypedValue result = conditional->mDbgEvaluationContext->EvaluateInContext(DbgTypedValue());
|
DbgTypedValue result = conditional->mDbgEvaluationContext->EvaluateInContext(DbgTypedValue());
|
||||||
ClearCallStack();
|
ClearCallStack();
|
||||||
|
|
||||||
|
if ((result.mType != NULL) && (result.mType->mTypeCode == DbgType_Bitfield))
|
||||||
|
result.mType = result.mType->mTypeParam;
|
||||||
|
|
||||||
if (conditional->mDbgEvaluationContext->mPassInstance->HasFailed())
|
if (conditional->mDbgEvaluationContext->mPassInstance->HasFailed())
|
||||||
{
|
{
|
||||||
String errorStr = "FAILED";
|
String errorStr = "FAILED";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue