You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix bug where malloc() doesn't return a null pointer
The malloc() function doesn't return a null pointer for too large requests. The cause is that the _sbrk() function isn't linked from the Renesas FSP as it should be, but instead from the Arm toolchain. This fix makes sure that the correct version of _sbrk() is linked.
0 commit comments