]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/input_manager.hpp
Qt4: remove useless alive check on input
[vlc] / modules / gui / qt4 / input_manager.hpp
index 33648a3f6b0cd803122c1b17a18b0090dfadcae6..7126cf1c45d9b1b51a23bdbbe5a8b420455779cf 100644 (file)
@@ -133,8 +133,7 @@ public:
     {
         return p_input /* We have an input */
             && !p_input->b_dead /* not dead yet, */
-            && !p_input->b_eof  /* not EOF either, */
-            && vlc_object_alive (p_input); /* and the VLC object is alive */
+            && !p_input->b_eof  /* not EOF either */;
     }
 
     int playingStatus();