Commit 4f820535 authored by michael's avatar michael

Write 0 instead of seeking forward (and leaving bytes uninitalized),

fixes odd regression test failure i had.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11512 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f57d4c91
......@@ -197,7 +197,8 @@ static void put_ebml_void(ByteIOContext *pb, uint64_t size)
put_ebml_num(pb, size-1, 0);
else
put_ebml_num(pb, size-9, 8);
url_fseek(pb, currentpos + size, SEEK_SET);
while(url_ftell(pb) < currentpos + size)
put_byte(pb, 0);
}
static ebml_master start_ebml_master(ByteIOContext *pb, unsigned int elementid, uint64_t expectedsize)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment