Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
medialibrary
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
58
Issues
58
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
medialibrary
Commits
56b864ac
Commit
56b864ac
authored
Jan 14, 2019
by
Hugo Beauzée-Luyssen
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fs: win32: Fix UWP directory creation
parent
a8712063
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/filesystem/win32/Directory.cpp
src/filesystem/win32/Directory.cpp
+1
-1
No files found.
src/filesystem/win32/Directory.cpp
View file @
56b864ac
...
...
@@ -135,7 +135,7 @@ void Directory::read() const
if
(
file
[
0
]
==
'.'
&&
strcasecmp
(
file
.
get
(),
".nomedia"
)
)
continue
;
if
(
(
dirInfo
->
FileAttributes
&
FILE_ATTRIBUTE_DIRECTORY
)
!=
0
)
m_dirs
.
emplace_back
(
m_fsFactory
.
createDirectory
(
m_
mrl
+
utils
::
url
::
encode
(
file
.
get
()
)
)
);
m_dirs
.
emplace_back
(
m_fsFactory
.
createDirectory
(
m_
path
+
utils
::
url
::
encode
(
file
.
get
()
)
)
);
else
m_files
.
emplace_back
(
std
::
make_shared
<
File
>
(
m_path
+
file
.
get
())
);
}
...
...
Hugo Beauzée-Luyssen
@chouquette
mentioned in commit
af53a89d
·
Jan 16, 2019
mentioned in commit
af53a89d
mentioned in commit af53a89d65968bd79b03b184797e9b4de4259655
Toggle commit list
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