Compare commits

...

2 Commits

Author SHA1 Message Date
Ionel-Cristinel ANICHITEI be0969824c rsbddisasm: Update CHANGELOG
11 months ago
Ionel-Cristinel ANICHITEI fbb38f1518 #82: Handle 0 in `OpSize::from_raw`
11 months ago

@ -1,6 +1,6 @@
[package] [package]
name = "bddisasm-sys" name = "bddisasm-sys"
version = "0.2.1" version = "0.3.0"
authors = ["Cristi Anichitei <ianichitei@bitdefender.com>"] authors = ["Cristi Anichitei <ianichitei@bitdefender.com>"]
edition = "2018" edition = "2018"
links = "bddisasm" links = "bddisasm"

@ -1,5 +1,11 @@
# bddisasm changelog # bddisasm changelog
## 0.3.0
### Fixed
- #84: handle 0 sizes in `OpSize::from_raw`
## 0.2.1 ## 0.2.1
### Added ### Added

@ -1,6 +1,6 @@
[package] [package]
name = "bddisasm" name = "bddisasm"
version = "0.2.2" version = "0.3.0"
authors = ["Cristi Anichitei <ianichitei@bitdefender.com>"] authors = ["Cristi Anichitei <ianichitei@bitdefender.com>"]
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
@ -14,7 +14,7 @@ categories = ["api-bindings", "hardware-support"]
keywords = ["disassembler", "decoder", "x86", "amd64", "x86_64"] keywords = ["disassembler", "decoder", "x86", "amd64", "x86_64"]
[dependencies] [dependencies]
bddisasm-sys = { version = "0.2.1", path = "../bddisasm-sys" } bddisasm-sys = { version = "0.3.0", path = "../bddisasm-sys" }
[features] [features]
std = [] std = []

@ -1633,6 +1633,9 @@ mod tests {
evex_rounding += 1; evex_rounding += 1;
} }
} }
// There is no `ND_SIZE_*` macro for 0, but the size 0 is valid, so test it here.
assert_eq!(operand::OpSize::from_raw(0), Ok(operand::OpSize::Bytes(0)));
} }
#[test] #[test]

@ -620,6 +620,7 @@ impl fmt::Display for OpSize {
impl OpSize { impl OpSize {
pub(crate) fn from_raw(value: ffi::ND_OPERAND_SIZE) -> Result<Self, DecodeError> { pub(crate) fn from_raw(value: ffi::ND_OPERAND_SIZE) -> Result<Self, DecodeError> {
match value { match value {
0 => Ok(OpSize::Bytes(0)),
ffi::ND_SIZE_8BIT => Ok(OpSize::Bytes(1)), ffi::ND_SIZE_8BIT => Ok(OpSize::Bytes(1)),
ffi::ND_SIZE_16BIT => Ok(OpSize::Bytes(2)), ffi::ND_SIZE_16BIT => Ok(OpSize::Bytes(2)),
ffi::ND_SIZE_32BIT => Ok(OpSize::Bytes(4)), ffi::ND_SIZE_32BIT => Ok(OpSize::Bytes(4)),

Loading…
Cancel
Save