Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't ignore buffer length when printing (#1768)
As a left-over from when Pony strings where null terminated, pony_os_std_print wasn't checking the length of the passed in buffer and would print the entire buffer and beyond until it hit a null terminator. This PR fixes that issue so that we will now correctly only print `len` elements from the buffer.
- Loading branch information