]> git.sesse.net Git - vlc/commitdiff
Win32: fail safe when loading plugins
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 16 Sep 2008 20:24:33 +0000 (23:24 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 16 Sep 2008 20:28:31 +0000 (23:28 +0300)
src/modules/os.c

index 17f033b7f2ec6f5fec46c304314180b91bc9e01b..6770a3fdcc78a60da6e3f671944e7179ab3dc165 100644 (file)
@@ -183,11 +183,17 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
     wchar_t psz_wfile[MAX_PATH];
     MultiByteToWideChar( CP_ACP, 0, psz_file, -1, psz_wfile, MAX_PATH );
 
+    /* FIXME: this is not thread-safe -- Courmisch */
+    UINT mode = SetErrorMode (SEM_FAILCRITICALERRORS);
+    SetErrorMode (mode|SEM_FAILCRITICALERRORS);
+
 #ifdef UNDER_CE
     handle = LoadLibrary( psz_wfile );
 #else
     handle = LoadLibraryW( psz_wfile );
 #endif
+    SetErrorMode (mode);
+
     if( handle == NULL )
     {
         char *psz_err = GetWindowsError();