[vlc-commits] activex: vlccontrol2: Add missing return value
    Hugo Beauzée-Luyssen 
    git at videolan.org
       
    Tue Apr 21 10:16:12 CEST 2015
    
    
  
npapi-vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Apr 13 17:01:19 2015 +0200| [faee47eb9ec9934a3e1ea1b847a880e29aa7f836] | committer: Hugo Beauzée-Luyssen
activex: vlccontrol2: Add missing return value
> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=faee47eb9ec9934a3e1ea1b847a880e29aa7f836
---
 activex/vlccontrol2.cpp |    1 +
 1 file changed, 1 insertion(+)
diff --git a/activex/vlccontrol2.cpp b/activex/vlccontrol2.cpp
index 7596404..a995a36 100644
--- a/activex/vlccontrol2.cpp
+++ b/activex/vlccontrol2.cpp
@@ -199,6 +199,7 @@ STDMETHODIMP VLCDeinterlace::enable(BSTR mode)
     char *psz_mode = CStrFromBSTR(CP_UTF8, mode);
     _plug->get_player().get_mp().setDeinterlace( psz_mode );
     CoTaskMemFree(psz_mode);
+    return S_OK;
 }
 
 /****************************************************************************/
    
    
More information about the vlc-commits
mailing list