Description
The charsReadUntilDelim field inside the Registers class is a StringBuilder. It is allocated once, and appended to frequently, but it is never reset or used. Since it is never reset and continually appended to, it will effectively leak memory since Registers are never freed.
We either need to reset this field like other StringBuilders or just remove it entirely.
Attachments
Issue Links
- links to