mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-02-05 18:20:51 +03:00
media-converter: Always set write offset past header
This commit is contained in:
parent
1ae6c80f3e
commit
d02b5dc9ce
@ -244,6 +244,9 @@ impl StreamArchive {
|
|||||||
version > FOSSILIZE_VERSION {
|
version > FOSSILIZE_VERSION {
|
||||||
return Err(Error::CorruptDatabase);
|
return Err(Error::CorruptDatabase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.write_pos = MAGIC_LEN_BYTES as u64;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let mut name_and_header = [0u8; PAYLOAD_NAME_LEN_BYTES + PAYLOAD_HEADER_LEN_BYTES];
|
let mut name_and_header = [0u8; PAYLOAD_NAME_LEN_BYTES + PAYLOAD_HEADER_LEN_BYTES];
|
||||||
let res = self.file.read_exact(&mut name_and_header);
|
let res = self.file.read_exact(&mut name_and_header);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user