mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 12:48:20 +00:00
Fixed a memory corruption issue with JS memory operations that were reusing invalid views
This commit is contained in:
2
lib/api/src/js/externals/mod.rs
vendored
2
lib/api/src/js/externals/mod.rs
vendored
@@ -1,11 +1,13 @@
|
||||
pub(crate) mod function;
|
||||
mod global;
|
||||
pub(crate) mod memory;
|
||||
pub(crate) mod memory_view;
|
||||
mod table;
|
||||
|
||||
pub use self::function::{FromToNativeWasmType, Function, HostFunction, WasmTypeList};
|
||||
pub use self::global::Global;
|
||||
pub use self::memory::{Memory, MemoryError};
|
||||
pub use self::memory_view::MemoryView;
|
||||
pub use self::table::Table;
|
||||
|
||||
use crate::js::export::Export;
|
||||
|
||||
Reference in New Issue
Block a user