Bump rizin dev (#3212)

This commit is contained in:
Giovanni 2023-08-02 23:04:28 +08:00 committed by GitHub
parent 6a48b97402
commit 3bcafe9625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

2
rizin

@ -1 +1 @@
Subproject commit a3ad6221fb2c727bd180709c764f1a23326f7f52
Subproject commit fe8ed0bfbe6f66a907e83e3f842840d1960e7fc5

View File

@ -3133,6 +3133,7 @@ QList<ExportDescription> CutterCore::getAllExports()
}
bool va = core->io->va || core->bin->is_debugger;
bool demangle = rz_config_get_b(core->config, "bin.demangle");
QList<ExportDescription> ret;
for (const auto &symbol : CutterRzList<RzBinSymbol>(symbols)) {
@ -3141,7 +3142,7 @@ QList<ExportDescription> CutterCore::getAllExports()
}
RzBinSymNames sn = {};
rz_core_sym_name_init(&sn, symbol);
rz_core_sym_name_init(&sn, symbol, demangle);
ExportDescription exportDescription;
exportDescription.vaddr = rva(bf->o, symbol->paddr, symbol->vaddr, va);