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
28caaf85
Commit
28caaf85
authored
Aug 18, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Taglib: assume Windows NT for filesystem access
parent
3cdb4538
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
21 deletions
+8
-21
modules/meta_engine/taglib.cpp
modules/meta_engine/taglib.cpp
+8
-21
No files found.
modules/meta_engine/taglib.cpp
View file @
28caaf85
...
...
@@ -329,16 +329,11 @@ static int ReadMeta( vlc_object_t* p_this)
#if defined(WIN32) || defined (UNDER_CE)
if
(
GetVersion
()
<
0x80000000
)
{
wchar_t
wpath
[
MAX_PATH
+
1
];
if
(
!
MultiByteToWideChar
(
CP_UTF8
,
0
,
p_demux
->
psz_path
,
-
1
,
wpath
,
MAX_PATH
)
)
return
VLC_EGENERIC
;
wpath
[
MAX_PATH
]
=
L'\0'
;
f
=
FileRef
(
wpath
);
}
else
return
VLC_EGENERIC
;
#else
const
char
*
local_name
=
ToLocale
(
p_demux
->
psz_path
);
if
(
!
local_name
)
...
...
@@ -538,19 +533,11 @@ static int WriteMeta( vlc_object_t *p_this )
}
#if defined(WIN32) || defined (UNDER_CE)
if
(
GetVersion
()
<
0x80000000
)
{
wchar_t
wpath
[
MAX_PATH
+
1
];
if
(
!
MultiByteToWideChar
(
CP_UTF8
,
0
,
export_file
,
-
1
,
wpath
,
MAX_PATH
)
)
return
VLC_EGENERIC
;
wpath
[
MAX_PATH
]
=
L'\0'
;
f
=
FileRef
(
wpath
);
}
else
{
free
(
export_file
);
return
VLC_EGENERIC
;
}
#else
const
char
*
local_name
=
ToLocale
(
export_file
);
if
(
!
local_name
)
...
...
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