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
same here and i corrected with
class VINT {
final List _ints = [];
int get result {
int value = 0;
for (int i = 0; i < _ints.length; i++) {
value |= (_ints[i] << (i * 7));
}
return value;
}
VINT.fromFile(RandomAccessFile file) {
bool continuationFlag;
do {
int byte = file.readByteSync();
_ints.add(byte & 0x7F);
continuationFlag = (byte & 0x80) != 0;
} while (continuationFlag);
}}
works for me
test1.rar.zip
Hallo,
i have a problem with this rar file. I habe a Unknown block exception (problem HEAD_TYPE is 24). Have you a solution for this problem ?
Thanks.
Mike
The text was updated successfully, but these errors were encountered: