Skip to content
Snippets Groups Projects

[3.0] subtitle: allow lowercase hex colors

Merged Steve Lhomme requested to merge robUx4/vlc:30-html-case into 3.0.x
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
+ 1
3
@@ -242,9 +242,7 @@ unsigned int vlc_html_color( const char *psz_value, bool* ok )
const char *psz_hex = (*psz_value == '#') ? psz_value + 1 : psz_value;
if( psz_hex != psz_value ||
(*psz_hex >= '0' && *psz_hex <= '9') ||
(*psz_hex >= 'A' && *psz_hex <= 'F') )
if( psz_hex != psz_value || isxdigit(*psz_hex) )
{
uint32_t i_value = strtol( psz_hex, &psz_end, 16 );
if( *psz_end == 0 || isspace( *psz_end ) )
Loading