[vlc-commits] skins2: fix object pointer inadvertedly modified recently

Erwan Tulou git at videolan.org
Fri Dec 9 21:53:23 CET 2016


vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Fri Dec  9 21:36:54 2016 +0100| [56a969a8fbdfcf58b46e5cf40acc6ca3c8ad1942] | committer: Erwan Tulou

skins2: fix object pointer inadvertedly modified recently

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

 modules/gui/skins2/src/vlcproc.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/skins2/src/vlcproc.cpp b/modules/gui/skins2/src/vlcproc.cpp
index b8d8c85..b827637 100644
--- a/modules/gui/skins2/src/vlcproc.cpp
+++ b/modules/gui/skins2/src/vlcproc.cpp
@@ -204,7 +204,7 @@ VlcProc::~VlcProc()
     var_DelCallback( getPL(), "playlist-item-deleted", onItemDelete, this );
     var_DelCallback( getPL(), "input-current", onInputNew, this );
     var_DelCallback( getPL(), "item-change", onItemChange, this );
-    var_DelCallback( getPL(), "interaction", onInteraction, this );
+    var_DelCallback( getIntf(), "interaction", onInteraction, this );
 }
 
 int VlcProc::onInputNew( vlc_object_t *pObj, const char *pVariable,



More information about the vlc-commits mailing list