Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
dc36a804
Commit
dc36a804
authored
Jan 25, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compilation after FromCharset.
parent
599c47de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/libvlccore.sym
src/libvlccore.sym
+1
-0
src/text/unicode.c
src/text/unicode.c
+1
-1
No files found.
src/libvlccore.sym
View file @
dc36a804
...
...
@@ -139,6 +139,7 @@ filter_DeleteBlend
filter_NewBlend
FromLocale
FromLocaleDup
FromCharset
GetFallbackEncoding
GetLang_1
GetLang_2B
...
...
src/text/unicode.c
View file @
dc36a804
...
...
@@ -373,7 +373,7 @@ const char *IsUTF8( const char *str )
* @return a nul-terminated utf-8 string, or null in case of error.
* The result must be freed using free().
*/
static
char
*
FromCharset
(
const
char
*
charset
,
const
void
*
data
,
size_t
data_size
)
char
*
FromCharset
(
const
char
*
charset
,
const
void
*
data
,
size_t
data_size
)
{
vlc_iconv_t
handle
=
vlc_iconv_open
(
"UTF-8"
,
charset
);
if
(
handle
==
(
vlc_iconv_t
)(
-
1
))
...
...
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