Fix bug when ignoring offset

This commit is contained in:
Hamdanil Rasyid
2013-07-14 23:20:43 +08:00
parent 34190f6576
commit ab19dedf1f

View File

@@ -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;