Commit 672bcaf6 authored by Felix Paul Kühne's avatar Felix Paul Kühne

vout_ios: fixed getProcAddress

parent 3b3a8924
...@@ -108,7 +108,7 @@ static void *OurGetProcAddress(vlc_gl_t *gl, const char *name) ...@@ -108,7 +108,7 @@ static void *OurGetProcAddress(vlc_gl_t *gl, const char *name)
{ {
VLC_UNUSED(gl); VLC_UNUSED(gl);
return dlsym(RTLD_MAIN_ONLY, name); return dlsym(RTLD_DEFAULT, name);
} }
// Called from vout thread // Called from vout thread
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment