Buffer out-of-bounds
Code
RUNTIME/BUFFER_OOB
What it means
A RangeError was detected as a likely buffer out-of-bounds access (heuristic based on the error message).
This often indicates corrupted data or a mismatch between expected and actual byte layouts.
When it happens
- A
RangeErrorindicates an offset/out-of-bounds buffer access (heuristic).
How to handle
- Treat as a bug/data-corruption signal.
- Log enough context to identify the buffer source (e.g. chunk key, byte lengths) without leaking sensitive data.
Last updated on