DLR-FT/wasm-interpreter

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

Open

#276 opened on Oct 23, 2025

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Rust (5 forks)auto 404
executiongood first issue

Repository metrics

Stars
 (37 stars)
PR merge metrics
 (PR metrics pending)

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