Merge pull request #7 from funman/staging

SDT: fix UTF-8 strings
pull/9/head
Kieran Kunhya 2018-08-08 18:20:29 +01:00 zatwierdzone przez GitHub
commit d3d4983161
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -127,11 +127,11 @@ static void write_service_descriptor( bs_t *s, int service_type, char *provider_
bs_write( s, 8, provider_name_length ); // service_provider_name_length
while( *provider_name != '\0' )
bs_write( s, 8, *provider_name++ );
bs_write( s, 8, (unsigned char)*provider_name++ );
bs_write( s, 8, service_name_length ); // service_name_length
while( *service_name != '\0' )
bs_write( s, 8, *service_name++ );
bs_write( s, 8, (unsigned char)*service_name++ );
}
/* DVB Service Information */