[vlc-devel] commit: vlc: only print error message if LibVLC is initialized ( Rémi Denis-Courmont )

git version control git at videolan.org
Wed Sep 9 21:37:42 CEST 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Sep  9 22:37:21 2009 +0300| [697041f622fae3788f23214ec0098ede13de7706] | committer: Rémi Denis-Courmont 

vlc: only print error message if LibVLC is initialized

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

 bin/vlc.c |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/bin/vlc.c b/bin/vlc.c
index b175439..4582318 100644
--- a/bin/vlc.c
+++ b/bin/vlc.c
@@ -49,8 +49,6 @@ extern char *FromLocale (const char *);
  *****************************************************************************/
 int main( int i_argc, const char *ppsz_argv[] )
 {
-    int i_ret;
-
 #ifdef __APPLE__
     /* The so-called POSIX-compliant MacOS X is not. 
      * SIGPIPE fires even when it is blocked in all threads! */
@@ -159,17 +157,14 @@ int main( int i_argc, const char *ppsz_argv[] )
         libvlc_add_intf (vlc, NULL, &ex);
         libvlc_playlist_play (vlc, -1, 0, NULL, &dummy);
         libvlc_wait (vlc);
+
+        if (libvlc_exception_raised (&ex))
+            fprintf( stderr, "%s\n", libvlc_errmsg() );
         libvlc_release (vlc);
     }
-    i_ret = libvlc_exception_raised (&ex);
-    if( i_ret )
-        fprintf( stderr, "%s\n", libvlc_errmsg() );
-
-    libvlc_exception_clear (&ex);
-    libvlc_exception_clear (&dummy);
 
     for (int i = 0; i < argc; i++)
         LocaleFree (argv[i]);
 
-    return i_ret;
+    return vlc == NULL || libvlc_exception_raised (&ex);
 }




More information about the vlc-devel mailing list