Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libdvdread
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
libdvdread
Commits
d413571c
Commit
d413571c
authored
4 years ago
by
Jean-Baptiste Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Fix the arguments order for strerror_s
parent
9bc33de3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#15087
failed with stage
in 55 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/dvd_input.c
+1
-1
1 addition, 1 deletion
src/dvd_input.c
with
1 addition
and
1 deletion
src/dvd_input.c
+
1
−
1
View file @
d413571c
...
...
@@ -211,7 +211,7 @@ static dvd_input_t file_open(void *priv, dvd_logger_cb *logcb,
#endif
#else
#if defined(HAVE_STRERR_S)
if
(
strerror_s
(
errno
,
buf
,
256
)
!=
0
)
if
(
strerror_s
(
buf
,
256
,
errno
)
!=
0
)
*
buf
=
0
;
#else
*
buf
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment