Fix inverted boolean condition
This commit is contained in:
parent
993428e2d4
commit
7540b44050
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ pub(crate) fn slice_in_ram<T>(slice: *const [T]) -> bool {
|
|||
#[cfg(not(feature = "nrf51"))]
|
||||
pub(crate) fn slice_in_ram_or<T, E>(slice: *const [T], err: E) -> Result<(), E> {
|
||||
let (_, len) = slice_ptr_parts(slice);
|
||||
if len > 0 && slice_in_ram(slice) {
|
||||
if len == 0 || slice_in_ram(slice) {
|
||||
Ok(())
|
||||
} else {
|
||||
Err(err)
|
||||
|
|
Loading…
Reference in a new issue