Merge branch 'master' into rar5

This commit is contained in:
Adam Hathcock
2018-01-10 14:58:40 +00:00

View File

@@ -209,6 +209,12 @@ namespace SharpCompress
public static void Skip(this Stream source, long advanceAmount)
{
if (source.CanSeek)
{
source.Position += advanceAmount;
return;
}
byte[] buffer = GetTransferByteArray();
try
{