]> git.sesse.net Git - vlc/blobdiff - src/misc/w32thread.c
Don't use a static mutex for libvlc_wait on Win32 (fixes: #3219)
[vlc] / src / misc / w32thread.c
index 64cdadc61f3af4d14e1a05b1e8de00286e7deb0f..c712ca845b5c2c5a7354bb3738a5b2984da44951 100644 (file)
@@ -140,8 +140,8 @@ DWORD WaitForMultipleObjectsEx (DWORD nCount, const HANDLE *lpHandles,
 }
 #endif
 
-static vlc_mutex_t super_mutex;
-static vlc_cond_t  super_variable;
+vlc_mutex_t super_mutex;
+vlc_cond_t  super_variable;
 
 BOOL WINAPI DllMain (HINSTANCE hinstDll, DWORD fdwReason, LPVOID lpvReserved)
 {