Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
2578127f
Commit
2578127f
authored
Sep 18, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove remaining strerror() calls from core - refs #1297
parent
4ff99618
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
24 additions
and
24 deletions
+24
-24
src/extras/libc.c
src/extras/libc.c
+1
-1
src/interface/interaction.c
src/interface/interaction.c
+1
-1
src/libvlc-common.c
src/libvlc-common.c
+6
-6
src/misc/image.c
src/misc/image.c
+5
-2
src/modules/configuration.c
src/modules/configuration.c
+6
-8
src/modules/modules.c
src/modules/modules.c
+3
-4
src/playlist/loadsave.c
src/playlist/loadsave.c
+2
-2
No files found.
src/extras/libc.c
View file @
2578127f
...
...
@@ -947,7 +947,7 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char *const *ppsz_argv,
switch
(
pid
)
{
case
-
1
:
msg_Err
(
p_object
,
"unable to fork (%
s)"
,
strerror
(
errno
)
);
msg_Err
(
p_object
,
"unable to fork (%
m)"
);
close
(
fds
[
0
]);
close
(
fds
[
1
]);
return
-
1
;
...
...
src/interface/interaction.c
View file @
2578127f
...
...
@@ -35,7 +35,7 @@
#include <stdlib.h>
/* free(), strtol() */
#include <stdio.h>
/* FILE */
#include <string.h>
/* strerror() */
#include <string.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
...
...
src/libvlc-common.c
View file @
2578127f
...
...
@@ -41,7 +41,7 @@
#include <errno.h>
/* ENOMEM */
#include <stdio.h>
/* sprintf() */
#include <string.h>
/* strerror() */
#include <string.h>
#include <stdlib.h>
/* free() */
#ifndef WIN32
...
...
@@ -374,8 +374,8 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, char *ppsz_argv[] )
}
else
{
msg_Err
(
p_libvlc
,
"cannot open pid file for writing: %s (%
s
)"
,
psz_pidfile
,
strerror
(
errno
)
);
msg_Err
(
p_libvlc
,
"cannot open pid file for writing: %s (%
m
)"
,
psz_pidfile
);
}
}
free
(
psz_pidfile
);
...
...
@@ -1035,8 +1035,8 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
msg_Dbg
(
p_libvlc
,
"removing pid file %s"
,
psz_pidfile
);
if
(
unlink
(
psz_pidfile
)
==
-
1
)
{
msg_Dbg
(
p_libvlc
,
"removing pid file %s:
failed: %s
"
,
psz_pidfile
,
strerror
(
errno
)
);
msg_Dbg
(
p_libvlc
,
"removing pid file %s:
%m
"
,
psz_pidfile
);
}
}
free
(
psz_pidfile
);
...
...
@@ -1210,7 +1210,7 @@ static inline int LoadMessages (void)
}
/* LibVLC wants all messages in UTF-8.
* Unfortunately, we cannot ask UTF-8 for strerror
(), strsignal
()
* Unfortunately, we cannot ask UTF-8 for strerror
_r(), strsignal_r
()
* and other functions that are not part of our text domain.
*/
if
(
bind_textdomain_codeset
(
PACKAGE_NAME
,
"UTF-8"
)
==
NULL
)
...
...
src/misc/image.c
View file @
2578127f
...
...
@@ -352,7 +352,7 @@ static int ImageWriteUrl( image_handler_t *p_image, picture_t *p_pic,
file
=
utf8_fopen
(
psz_url
,
"wb"
);
if
(
!
file
)
{
msg_Err
(
p_image
->
p_parent
,
"%s: %
s"
,
psz_url
,
strerror
(
errno
)
);
msg_Err
(
p_image
->
p_parent
,
"%s: %
m"
,
psz_url
);
return
VLC_EGENERIC
;
}
...
...
@@ -370,7 +370,10 @@ static int ImageWriteUrl( image_handler_t *p_image, picture_t *p_pic,
err
=
errno
;
if
(
err
)
msg_Err
(
p_image
->
p_parent
,
"%s: %s"
,
psz_url
,
strerror
(
err
)
);
{
errno
=
err
;
msg_Err
(
p_image
->
p_parent
,
"%s: %m"
,
psz_url
);
}
return
err
?
VLC_EGENERIC
:
VLC_SUCCESS
;
}
...
...
src/modules/configuration.c
View file @
2578127f
...
...
@@ -799,8 +799,8 @@ static FILE *config_OpenConfigFile( vlc_object_t *p_obj, const char *mode )
p_stream
=
utf8_fopen
(
psz_filename
,
mode
);
if
(
p_stream
==
NULL
&&
errno
!=
ENOENT
)
{
msg_Err
(
p_obj
,
"cannot open config file (%s): %
s
"
,
psz_filename
,
strerror
(
errno
)
);
msg_Err
(
p_obj
,
"cannot open config file (%s): %
m
"
,
psz_filename
);
}
#if !( defined(WIN32) || defined(__APPLE__) || defined(SYS_BEOS) )
...
...
@@ -988,9 +988,8 @@ int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name )
{
long
l
=
strtoi
(
psz_option_value
);
if
(
errno
)
msg_Warn
(
p_this
,
"Integer value (%s) for %s: %s"
,
psz_option_value
,
psz_option_name
,
strerror
(
errno
));
msg_Warn
(
p_this
,
"Integer value (%s) for %s: %m"
,
psz_option_value
,
psz_option_name
);
else
p_item
->
saved
.
i
=
p_item
->
value
.
i
=
(
int
)
l
;
break
;
...
...
@@ -1030,7 +1029,7 @@ int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name )
if
(
ferror
(
file
))
{
msg_Err
(
p_this
,
"error reading configuration: %
s"
,
strerror
(
errno
)
);
msg_Err
(
p_this
,
"error reading configuration: %
m"
);
clearerr
(
file
);
}
fclose
(
file
);
...
...
@@ -1069,8 +1068,7 @@ int config_CreateDir( vlc_object_t *p_this, const char *psz_dirname )
}
free
(
psz_parent
);
}
msg_Err
(
p_this
,
"could not create %s (%s)"
,
psz_dirname
,
strerror
(
errno
)
);
msg_Err
(
p_this
,
"could not create %s: %m"
,
psz_dirname
);
return
-
1
;
}
...
...
src/modules/modules.c
View file @
2578127f
...
...
@@ -1370,8 +1370,8 @@ static int CallEntry( module_t * p_module )
msg_Warn
(
p_module
,
"cannot find symbol
\"
%s
\"
in file `%s' (%s)"
,
psz_name
,
p_module
->
psz_filename
,
dlerror
()
);
#elif defined(HAVE_DL_SHL_LOAD)
msg_Warn
(
p_module
,
"cannot find symbol
\"
%s
\"
in file `%s' (%
s
)"
,
psz_name
,
p_module
->
psz_filename
,
strerror
(
errno
)
);
msg_Warn
(
p_module
,
"cannot find symbol
\"
%s
\"
in file `%s' (%
m
)"
,
psz_name
,
p_module
->
psz_filename
);
#else
# error "Something is wrong in modules.c"
#endif
...
...
@@ -1503,8 +1503,7 @@ static int LoadModule( vlc_object_t *p_this, char *psz_file,
handle
=
shl_load
(
psz_file
,
BIND_IMMEDIATE
|
BIND_NONFATAL
,
NULL
);
if
(
handle
==
NULL
)
{
msg_Warn
(
p_this
,
"cannot load module `%s' (%s)"
,
psz_file
,
strerror
(
errno
)
);
msg_Warn
(
p_this
,
"cannot load module `%s' (%m)"
,
psz_file
);
return
-
1
;
}
...
...
src/playlist/loadsave.c
View file @
2578127f
...
...
@@ -55,8 +55,8 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
p_export
->
p_file
=
utf8_fopen
(
psz_filename
,
"wt"
);
if
(
!
p_export
->
p_file
)
{
msg_Err
(
p_playlist
,
"could not create playlist file %s
"
" (%s)"
,
psz_filename
,
strerror
(
errno
)
);
msg_Err
(
p_playlist
,
"could not create playlist file %s
(%m)"
,
psz_filename
);
return
VLC_EGENERIC
;
}
...
...
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