[vlc-commits] vout_ios: fixed getProcAddress
Felix Paul Kühne
git at videolan.org
Sun May 6 14:07:15 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun May 6 14:07:10 2012 +0200| [672bcaf62d0b94a826c7a519474e88b2fbe7bb77] | committer: Felix Paul Kühne
vout_ios: fixed getProcAddress
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=672bcaf62d0b94a826c7a519474e88b2fbe7bb77
---
modules/video_output/ios.m | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/ios.m b/modules/video_output/ios.m
index c5fc9d2..ef6293b 100644
--- a/modules/video_output/ios.m
+++ b/modules/video_output/ios.m
@@ -108,7 +108,7 @@ static void *OurGetProcAddress(vlc_gl_t *gl, const char *name)
{
VLC_UNUSED(gl);
- return dlsym(RTLD_MAIN_ONLY, name);
+ return dlsym(RTLD_DEFAULT, name);
}
// Called from vout thread
More information about the vlc-commits
mailing list