Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
fb033327
Commit
fb033327
authored
Nov 27, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Horrific kludge to prevent awfully crappy glibc from crashing VLC all the time.
parent
c951fd31
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
src/vlc.c
src/vlc.c
+16
-0
No files found.
src/vlc.c
View file @
fb033327
...
@@ -31,6 +31,9 @@
...
@@ -31,6 +31,9 @@
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <locale.h>
#include <locale.h>
#ifdef __GLIBC__
#include <dlfcn.h>
#endif
/* Explicit HACK */
/* Explicit HACK */
...
@@ -63,6 +66,19 @@ int main( int i_argc, const char *ppsz_argv[] )
...
@@ -63,6 +66,19 @@ int main( int i_argc, const char *ppsz_argv[] )
{
{
int
i_ret
;
int
i_ret
;
# ifdef __GLIBC__
if
(
dlsym
(
RTLD_NEXT
,
"sync_file_range"
))
{
/* Way too many Linux users have glibc 2.6 that keeps crashing
* inside its non-thread-safe dcgettext(). */
fprintf
(
stderr
,
"***************************************************
\n
"
"*** glibc version with broken libintl detected. ***
\n
"
"*** Messages localization will be disabled. ***
\n
"
"***************************************************
\n
"
);
setenv
(
"LC_MESSAGES"
,
"C"
,
1
);
}
# endif
setlocale
(
LC_ALL
,
""
);
setlocale
(
LC_ALL
,
""
);
#ifndef __APPLE__
#ifndef __APPLE__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment