vlc | branch: master | Steve Lhomme <[email protected]> | Mon Jul 11 15:36:26 2016 +0200| [1d2679ffe05bb44d087c347eec05aa9e651979d3] | committer: Hugo Beauzée-Luyssen
win32: plugin: fix loaded module handle not used on winstore Signed-off-by: Hugo Beauzée-Luyssen <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1d2679ffe05bb44d087c347eec05aa9e651979d3 --- src/win32/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32/plugin.c b/src/win32/plugin.c index 3d639ac..3f3bb81 100644 --- a/src/win32/plugin.c +++ b/src/win32/plugin.c @@ -111,7 +111,7 @@ int module_Load( vlc_object_t *p_this, const char *psz_file, SetThreadErrorMode (mode, NULL); } #else - LoadPackagedLibrary( wfile, 0 ); + handle = LoadPackagedLibrary( wfile, 0 ); #endif free (wfile); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
