cutter: Patch for radare2-4.4.0
This commit is contained in:
parent
bbae8e24e5
commit
0ead4c0ada
2 changed files with 12 additions and 1 deletions
11
srcpkgs/cutter/patches/001-fix-radare2-4.4.0.patch
Normal file
11
srcpkgs/cutter/patches/001-fix-radare2-4.4.0.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/core/Cutter.cpp
|
||||
+++ src/core/Cutter.cpp
|
||||
@@ -2437,7 +2437,7 @@ QList<FunctionDescription> CutterCore::getAllFunctions()
|
||||
function.nbbs = r_list_length (fcn->bbs);
|
||||
function.calltype = fcn->cc ? QString::fromUtf8(fcn->cc) : QString();
|
||||
function.name = fcn->name ? QString::fromUtf8(fcn->name) : QString();
|
||||
- function.edges = r_anal_fcn_count_edges(fcn, nullptr);
|
||||
+ function.edges = r_anal_function_count_edges(fcn, nullptr);
|
||||
function.stackframe = fcn->maxstack;
|
||||
funcList.append(function);
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'cutter'
|
||||
pkgname=cutter
|
||||
version=1.10.2
|
||||
revision=1
|
||||
revision=2
|
||||
build_wrksrc=src
|
||||
build_style=qmake
|
||||
hostmakedepends="pkg-config qt5-declarative-devel qt5-location-devel
|
||||
|
|
Loading…
Reference in a new issue