DLR-FT/wasm-interpreter

Enfore stack size limits on allocation capacity, not only element counts

Open

#276 opened on Oct 23, 2025

 (0 comments) (0 reactions) (0 assignees)Rust (5 forks)auto 404
bugexecutiongood first issue

Repository metrics

Stars
 (37 stars)
PR merge metrics
 (Avg merge 5d 12h) (16 merged PRs in 30d)

Description

Currently we only check for the maximum stack size before trying to push an element onto the stack. However, we should also limit the capacity of the internal Vec to prevent any unexpected memory usage.

Contributor guide