From fff324f4fa1cc28bebaf73d55ef24f106a1ce83a Mon Sep 17 00:00:00 2001 From: rollsafe Date: Fri, 16 Aug 2019 12:56:07 -0400 Subject: Add signature matcher library functions to Feature Map --- ui/symbollist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/symbollist.h') diff --git a/ui/symbollist.h b/ui/symbollist.h index aa61abf3..21f30d0b 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -100,7 +100,7 @@ public: return false; } - bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol); } + bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) || (getType() == LibraryFunctionSymbol); } uint64_t getStart() const { return sym->GetAddress(); } std::string getName() const { return name; } std::string getRawName() const { return rawName; } -- cgit v1.3.1