[vlc-commits] commit: "strlen( psz ) == 0" => "*psz == '\0'" ( Rémi Duraffort )

git at videolan.org git at videolan.org
Mon Apr 19 20:13:01 CEST 2010


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Apr 19 12:35:06 2010 +0200| [4b4d2494895fdd9d0ac16849c9a679539ad19033] | committer: Rémi Duraffort 

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4b4d2494895fdd9d0ac16849c9a679539ad19033
---

 modules/access/bda/bdagraph.cpp |    4 ++--
 modules/demux/mp4/libmp4.c      |    2 +-
 modules/demux/subtitle.c        |    2 +-
 modules/gui/ncurses.c           |    2 +-
 modules/stream_out/raop.c       |    2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/access/bda/bdagraph.cpp b/modules/access/bda/bdagraph.cpp
index 1a19c7c..1a41bb0 100644
--- a/modules/access/bda/bdagraph.cpp
+++ b/modules/access/bda/bdagraph.cpp
@@ -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",
diff --git a/modules/demux/mp4/libmp4.c b/modules/demux/mp4/libmp4.c
index c84b74e..411c2dd 100644
--- a/modules/demux/mp4/libmp4.c
+++ b/modules/demux/mp4/libmp4.c
@@ -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( ; ; )
diff --git a/modules/demux/subtitle.c b/modules/demux/subtitle.c
index c319946..394a80b 100644
--- a/modules/demux/subtitle.c
+++ b/modules/demux/subtitle.c
@@ -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 ||
diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c
index f3641ed..2c58fab 100644
--- a/modules/gui/ncurses.c
+++ b/modules/gui/ncurses.c
@@ -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 */
diff --git a/modules/stream_out/raop.c b/modules/stream_out/raop.c
index 498b1c4..c7e5a04 100644
--- a/modules/stream_out/raop.c
+++ b/modules/stream_out/raop.c
@@ -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;
     }



More information about the vlc-commits mailing list