diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2025-01-24 19:47:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-24 19:47:37 -0700 |
| commit | 73ba320831997d38b4d6431df3805c62b76400e7 (patch) | |
| tree | 49c3f3da3dacd71f3de8078ef0f50b64b35eccbc /src/os | |
| parent | 23133b6fc058d87d999ddcebc4dd4388f29b96c8 (diff) | |
Fix matrix stack heap corruption (#166)
* Fix matrix stack heap corruption
* Fix matrix overflow bug
Diffstat (limited to 'src/os')
| -rw-r--r-- | src/os/osInitialize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/osInitialize.c b/src/os/osInitialize.c index 45d6c1b3d..32376df0e 100644 --- a/src/os/osInitialize.c +++ b/src/os/osInitialize.c @@ -57,7 +57,7 @@ void osInitialize(void) { } osClockRate = osClockRate * 3 / 4; if (osResetType == RESET_TYPE_COLD_RESET) { - // bzero(osAppNmiBuffer, sizeof(osAppNmiBuffer)); + bzero(osAppNmiBuffer, sizeof(osAppNmiBuffer)); } eu_sp30 = HW_REG(PI_STATUS_REG, u32); |
