summaryrefslogtreecommitdiff
path: root/debuginfo.cpp
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2024-05-24 14:47:15 -0400
committerRyan Snyder <ryan@vector35.com>2024-05-24 17:14:46 -0400
commit56115aecf186bc720dae9a20cc4c6aef248ba07f (patch)
tree1754beaa4e8601be328de689c0f6dc9d05851b35 /debuginfo.cpp
parent74920c190c5c6230833be6d50536119ce5e44c98 (diff)
platform: initial BNCustomPlatform support
Diffstat (limited to 'debuginfo.cpp')
-rw-r--r--debuginfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/debuginfo.cpp b/debuginfo.cpp
index 2af16525..412d44bb 100644
--- a/debuginfo.cpp
+++ b/debuginfo.cpp
@@ -100,7 +100,7 @@ vector<DebugFunctionInfo> DebugInfo::GetFunctions(const string& parserName) cons
functions[i].fullName ? functions[i].fullName : "", functions[i].rawName ? functions[i].rawName : "",
functions[i].address,
functions[i].type ? new Type(BNNewTypeReference(functions[i].type)) : nullptr,
- functions[i].platform ? new Platform(BNNewPlatformReference(functions[i].platform)) : nullptr, components);
+ functions[i].platform ? new CorePlatform(BNNewPlatformReference(functions[i].platform)) : nullptr, components);
}
BNFreeDebugFunctions(functions, count);