swactor/crates/wasm-actor
Claude dfc9e6a392 fix: bounds-check alloc pointer before copy_from_slice
Guest alloc could return a pointer where ptr+len exceeds linear memory
size, causing a Rust panic that permanently poisoned the actor. Now
validates ptr+len <= memory.len() before writing, dropping the message
on OOB (consistent with other allocation failure handling).

Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
2026-02-13 21:07:59 +07:00
..
src fix: bounds-check alloc pointer before copy_from_slice 2026-02-13 21:07:59 +07:00
tests fix: bounds-check alloc pointer before copy_from_slice 2026-02-13 21:07:59 +07:00
Cargo.toml skeleton of wasm runner actors (#32) 2026-02-13 07:42:44 +00:00