]> git.sesse.net Git - vlc/commitdiff
libvlc: Properly raise an exception that indicates if VLM is disabled in libvlc.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 9 Apr 2008 09:53:41 +0000 (11:53 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 9 Apr 2008 09:53:57 +0000 (11:53 +0200)
src/control/vlm.c

index 78df6c3d1c91b5e7509fd43aa53ab8f6b7288120..c3740e0fd3a4c1b2c96392dc0963ef98d71ef0d1 100644 (file)
@@ -91,10 +91,12 @@ char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name,
     }
     free( psz_message );
     return(psz_response );
-#endif
+#else
+    libvlc_exception_raise( p_exception, "VLM has been disabled in this libvlc." );
     return NULL;
-}
 #endif
+}
+#endif /* 0 */
 
 static int libvlc_vlm_init( libvlc_instance_t *p_instance,
                             libvlc_exception_t *p_exception )
@@ -102,12 +104,15 @@ static int libvlc_vlm_init( libvlc_instance_t *p_instance,
 #ifdef ENABLE_VLM
     if( !p_instance->p_vlm )
         p_instance->p_vlm = vlm_New( p_instance->p_libvlc_int );
+#else
+    libvlc_exception_raise( p_exception, "VLM has been disabled in this libvlc." );
+    return VLC_EGENERIC;
 #endif
 
     if( !p_instance->p_vlm )
     {
         libvlc_exception_raise( p_exception,
-                                "Unable to create VLM. It might be disabled." );
+                                "Unable to create VLM." );
         return VLC_EGENERIC;
     }
     return VLC_SUCCESS;