Add missing break statements to EmuX86_MOV

This commit is contained in:
Luke Usher 2016-12-02 22:20:14 +00:00
parent 1fea5aaf1b
commit bbf0d729cb
1 changed files with 3 additions and 0 deletions

View File

@ -175,6 +175,7 @@ bool EmuX86_MOV(LPEXCEPTION_POINTERS e, Zydis::InstructionInfo& info)
default:
return false;
}
break;
}
default:
return false;
@ -201,6 +202,7 @@ bool EmuX86_MOV(LPEXCEPTION_POINTERS e, Zydis::InstructionInfo& info)
default:
return false;
}
break;
}
case Zydis::OperandType::MEMORY:
{
@ -221,6 +223,7 @@ bool EmuX86_MOV(LPEXCEPTION_POINTERS e, Zydis::InstructionInfo& info)
default:
return false;
}
break;
}
default:
return false;