mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-13 12:36:52 +00:00
Fix bug when ignoring offset
This commit is contained in:
@@ -142,9 +142,10 @@ namespace SharpCompress.Common.Rar
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
buffer[i] = _data.Dequeue();
|
||||
buffer[offset+i] = _data.Dequeue();
|
||||
Console.Write(buffer[i].ToString("x2") + " ");
|
||||
}
|
||||
}
|
||||
Console.WriteLine();
|
||||
}
|
||||
return count;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user