From 00d5b250d8cd676d33bc83b0dd7a27ddecb987bc Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Sun, 24 May 2015 02:23:32 -0400 Subject: Add UI for cross references, and generate them for code to data refs --- binaryview.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'binaryview.cpp') diff --git a/binaryview.cpp b/binaryview.cpp index d0274f95..cabd7783 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -659,6 +659,7 @@ vector 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); -- cgit v1.3.1