From 68b00cdf45551ba64c4f7217963055fc5a1a0cc4 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Fri, 30 May 2025 16:39:32 -0400 Subject: [Rust] Express expression vs instruction index for MLIL and HLIL APIs This was done to fix unintended behavior using an instruction or expression index in place of the other. Fixes https://github.com/Vector35/binaryninja-api/issues/6897 --- rust/src/low_level_il/operation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/low_level_il') diff --git a/rust/src/low_level_il/operation.rs b/rust/src/low_level_il/operation.rs index bc8e579e..0db23c82 100644 --- a/rust/src/low_level_il/operation.rs +++ b/rust/src/low_level_il/operation.rs @@ -86,7 +86,7 @@ where self.op.operands[operand_idx] as usize, ) }; - PossibleValueSet::from_owned_raw(raw_pvs) + PossibleValueSet::from_owned_core_raw(raw_pvs) } } -- cgit v1.3.1