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
There are some regions where the parser slices parts out of the input buffer and returns them as part of the result.
We should use copy() here because slice() references the same as the input buffer. This means that the input buffer can't be freed or reused which leads to memory leaks.
The text was updated successfully, but these errors were encountered:
There are some regions where the parser slices parts out of the input buffer and returns them as part of the result.
We should use copy() here because slice() references the same as the input buffer. This means that the input buffer can't be freed or reused which leads to memory leaks.
The text was updated successfully, but these errors were encountered: