We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c11e627 commit fa6ceb7Copy full SHA for fa6ceb7
1 file changed
rust/src/architecture.rs
@@ -620,7 +620,7 @@ impl FunctionLifterContext {
620
for i in 0..flc_ref.basicBlockCount {
621
let block = unsafe {
622
Some(BasicBlock::ref_from_raw(
623
- *flc_ref.basicBlocks.add(i),
+ BNNewBasicBlockReference(*flc_ref.basicBlocks.add(i)),
624
NativeBlock::new(),
625
))
626
};
@@ -653,7 +653,7 @@ impl FunctionLifterContext {
653
654
FunctionLifterContext {
655
handle,
656
- function,
+ function: BNNewLowLevelILFunctionReference(function),
657
platform,
658
logger,
659
blocks,
0 commit comments