Commit 573c2015 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

ttml: Fix i_read type

Fix CID #1346955
parent 36eb0436
...@@ -378,7 +378,7 @@ static void ParseHead( demux_t* p_demux ) ...@@ -378,7 +378,7 @@ static void ParseHead( demux_t* p_demux )
char* psz_head = NULL; char* psz_head = NULL;
size_t i_head_len = 0; // head tags size, in bytes size_t i_head_len = 0; // head tags size, in bytes
size_t i_size; // allocated buffer size size_t i_size; // allocated buffer size
size_t i_read; ssize_t i_read;
// Rewind since the XML parser will have consumed the entire file. // Rewind since the XML parser will have consumed the entire file.
stream_Seek( p_demux->s, 0 ); stream_Seek( p_demux->s, 0 );
......
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