Update radare2 submodule (#2189)

* Update radare2 submodule

* Use the new API, r_meta_get_string doesn't return owned pointer anymore.
This commit is contained in:
Itay Cohen 2020-05-11 19:55:38 +03:00 committed by GitHub
parent 1aad797722
commit 18a21048dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 9ea0b7ce566cfdcfb3513f407c4056915204294a Subproject commit 0b231619abedfec08f3bfb86fea259536877ab9a

View File

@ -793,7 +793,7 @@ void CutterCore::delComment(RVA addr)
QString CutterCore::getCommentAt(RVA addr) QString CutterCore::getCommentAt(RVA addr)
{ {
CORE_LOCK(); CORE_LOCK();
return fromOwnedCharPtr(r_meta_get_string(core->anal, R_META_TYPE_COMMENT, addr)); return r_meta_get_string(core->anal, R_META_TYPE_COMMENT, addr);
} }
void CutterCore::setImmediateBase(const QString &r2BaseName, RVA offset) void CutterCore::setImmediateBase(const QString &r2BaseName, RVA offset)