mirror of
https://github.com/fluencelabs/interface-types
synced 2024-12-04 07:10:21 +00:00
disable check
This commit is contained in:
parent
e8e492dd48
commit
27c13e9547
@ -20,9 +20,6 @@ use thiserror::Error as ThisError;
|
||||
|
||||
#[derive(Debug, ThisError)]
|
||||
pub enum LoError {
|
||||
#[error("Allocator of Wasm module returns 0 which means that it's out of memory")]
|
||||
AllocateWasInvalid,
|
||||
|
||||
#[error("{0}")]
|
||||
AllocatableError(#[from] AllocatableError),
|
||||
|
||||
|
@ -55,9 +55,6 @@ impl<'i, A: Allocatable> MemoryWriter<'i, A> {
|
||||
|
||||
pub fn sequential_writer(&self, size: u32, type_tag: u32) -> LoResult<SequentialWriter> {
|
||||
let offset = self.heap_manager.allocate(size, type_tag)?;
|
||||
if offset == 0 {
|
||||
return Err(LoError::AllocateWasInvalid);
|
||||
}
|
||||
|
||||
let new_mem_slice = self.heap_manager.memory_slice(DEFAULT_MEMORY_INDEX)?;
|
||||
self.memory.set(new_mem_slice);
|
||||
|
Loading…
Reference in New Issue
Block a user