Commit 4b4d2494 authored by Rémi Duraffort's avatar Rémi Duraffort

"strlen( psz ) == 0" => "*psz == '\0'"

parent 61f59e92
......@@ -911,7 +911,7 @@ HRESULT BDAGraph::CreateTuneRequest()
/* Test for a specific Tuning space name supplied on the command
* line as dvb-networkname=xxx */
if( strlen( l.psz_network_name ) == 0 ||
if( *l.psz_network_name == '\0' ||
strcmp( l.psz_network_name, l.psz_bstr_name ) == 0 )
{
msg_Dbg( p_access, "CreateTuneRequest: Using Tuning Space: %s",
......@@ -1001,7 +1001,7 @@ HRESULT BDAGraph::CreateTuneRequest()
l.psz_bstr_name = new char[ l.i_name_len ];
l.i_name_len = WideCharToMultiByte( CP_ACP, 0, l.bstr_name, -1,
l.psz_bstr_name, l.i_name_len, NULL, NULL );
if( strlen( l.psz_network_name ) == 0 ||
if( *l.psz_network_name == '\0' ||
strcmp( l.psz_network_name, l.psz_bstr_name ) == 0 )
{
msg_Dbg( p_access, "CreateTuneRequest: Using Tuning Space: %s",
......
......@@ -3084,7 +3084,7 @@ static void __MP4_BoxGet( MP4_Box_t **pp_result,
}
}
else
if( strlen( psz_token ) == 0 )
if( *psz_token == '\0' )
{
p_box = p_box->p_first;
for( ; ; )
......
......@@ -1855,7 +1855,7 @@ static int ParsePSB( demux_t *p_demux, subtitle_t *p_subtitle, int i_idx )
static int64_t ParseRealTime( char *psz, int *h, int *m, int *s, int *f )
{
if( strlen( psz ) == 0 ) return 0;
if( *psz == '\0' ) return 0;
if( sscanf( psz, "%d:%d:%d.%d", h, m, s, f ) == 4 ||
sscanf( psz, "%d:%d.%d", m, s, f ) == 3 ||
sscanf( psz, "%d.%d", s, f ) == 2 ||
......
......@@ -2166,7 +2166,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
if( p_sys->psz_search_chain )
{
if( strlen( p_sys->psz_search_chain ) == 0 &&
if( *p_sys->psz_search_chain == '\0' &&
p_sys->psz_old_search != NULL )
{
/* Searching next entry */
......
......@@ -577,7 +577,7 @@ static char *ReadPasswordFile( vlc_object_t *p_this, const char *psz_path )
*psz_newline = '\0';
}
if ( strlen( ps_buffer ) == 0 ) {
if ( *ps_buffer == '\0' ) {
msg_Err( p_this, "No password could be read from '%s'", psz_path );
goto error;
}
......
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