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
[writer] Fix issue when writing big files, where end of buffer could be skipped without notice
This bug resulted in the write method being called without inspecting how many characters has been effectively written. Solved by calling write_all instead.
Removed Seek from implementation, since transcoding something can change its length. This implementation could cause long term issues so it has been removed.