Update rizin submodule (#2900)

This is also a partial fix for #2897
This commit is contained in:
yossizap 2022-03-15 10:58:09 +00:00 committed by GitHub
parent bca7a7a2a6
commit 72ab12a23d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
rizin

@ -1 +1 @@
Subproject commit d43cbf5ce74fd7333032144a8e0fc2f74ce9803a
Subproject commit dd81b6629a45ec3d221042ed9729b50cd3c478c5

View File

@ -737,7 +737,7 @@ QString CutterCore::getInstructionOpcode(RVA addr)
void CutterCore::editInstruction(RVA addr, const QString &inst)
{
CORE_LOCK();
rz_core_write_assembly(core, addr, inst.trimmed().toStdString().c_str(), false, false);
rz_core_write_assembly(core, addr, inst.trimmed().toStdString().c_str());
emit instructionChanged(addr);
}