mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 03:46:11 +00:00
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:
parent
1aad797722
commit
18a21048dd
2
radare2
2
radare2
@ -1 +1 @@
|
||||
Subproject commit 9ea0b7ce566cfdcfb3513f407c4056915204294a
|
||||
Subproject commit 0b231619abedfec08f3bfb86fea259536877ab9a
|
@ -793,7 +793,7 @@ void CutterCore::delComment(RVA addr)
|
||||
QString CutterCore::getCommentAt(RVA addr)
|
||||
{
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user