diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-05-24 02:23:32 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-05-24 02:23:58 -0400 |
| commit | 00d5b250d8cd676d33bc83b0dd7a27ddecb987bc (patch) | |
| tree | eda4c1afd91738e0a56ac6025a5d4d254c78b589 /binaryview.cpp | |
| parent | 8a1b1bb5e3bd19dd50787bdb9616de56fea8ce00 (diff) | |
Add UI for cross references, and generate them for code to data refs
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index d0274f95..cabd7783 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -659,6 +659,7 @@ vector<ReferenceSource> BinaryView::GetCodeReferences(uint64_t addr) src.func = new Function(BNNewFunctionReference(refs[i].func)); src.arch = new CoreArchitecture(refs[i].arch); src.addr = refs[i].addr; + result.push_back(src); } BNFreeCodeReferences(refs, count); |
