[vlc-devel] commit: mozilla: fix regression introduced in: da3d8cdb8bb6a11bf727cf333da2ffa9816f117b (Jean-Paul Saman )

git version control git at videolan.org
Sat Mar 7 17:19:42 CET 2009


vlc | branch: master | Jean-Paul Saman <jean-paul.saman at m2x.nl> | Fri Mar  6 16:04:26 2009 +0100| [b99a4797dca4d88cd0dcd786ed6e36374c81ddd4] | committer: Jean-Paul Saman 

mozilla: fix regression introduced in: da3d8cdb8bb6a11bf727cf333da2ffa9816f117b

Fixes play/pause and fullscreen toggle.

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

 projects/mozilla/vlcplugin.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/projects/mozilla/vlcplugin.cpp b/projects/mozilla/vlcplugin.cpp
index 40ca4a2..6293f64 100644
--- a/projects/mozilla/vlcplugin.cpp
+++ b/projects/mozilla/vlcplugin.cpp
@@ -442,7 +442,7 @@ int VlcPlugin::playlist_isplaying( libvlc_exception_t *ex )
 {
     int is_playing = 0;
     if( libvlc_media_player )
-        libvlc_media_player_is_playing( libvlc_media_player, ex );
+        is_playing = libvlc_media_player_is_playing( libvlc_media_player, ex );
     return is_playing;
 }
 




More information about the vlc-devel mailing list