Commit 29a893b6 authored by Laurent Aimar's avatar Laurent Aimar

Fixed ASF_ReadObject_extended_stream_properties parsing in case of

stream language.
parent 21a96468
...@@ -920,7 +920,7 @@ static int ASF_ReadObject_extended_stream_properties( stream_t *s, ...@@ -920,7 +920,7 @@ static int ASF_ReadObject_extended_stream_properties( stream_t *s,
p_esp->pi_stream_name_language[i] = GetWLE( &p_data[0] ); p_esp->pi_stream_name_language[i] = GetWLE( &p_data[0] );
i_size = GetWLE( &p_data[2] ); i_size = GetWLE( &p_data[2] );
p_data += 2; p_data += 2+2;
psz = calloc( i_size/2 + 1, sizeof(char) ); psz = calloc( i_size/2 + 1, sizeof(char) );
for( i_len = 0; i_len < i_size/2; i_len++ ) for( i_len = 0; i_len < i_size/2; i_len++ )
......
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