Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rogue writes from within param_load()
Here we are iterating over parameter indices but using byte length for bounds, meaning we iterate to four times the actual number of parameters. The subsequent param_check returns false for each of the overrun indices, causing an out-of-bounds write each time. This explains commit 70b306a (Disable AT mode after reset, 2020-02-12).
- Loading branch information