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
For certain special file types like symlinks and friends, the tar file should contain no data. The Reader correctly avoids reading data, but the Writer allows (and expects) the user to write data for these header-only file types. Instead, we should return ErrWriteTooLong if the user tries to write data.
Using
go1.6
For certain special file types like symlinks and friends, the tar file should contain no data. The Reader correctly avoids reading data, but the Writer allows (and expects) the user to write data for these header-only file types. Instead, we should return
ErrWriteTooLong
if the user tries to write data.Example: https://play.golang.org/p/4au8V3Ynwj
The text was updated successfully, but these errors were encountered: