summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-26 21:21:56 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-01-25 17:00:14 +0900
commitf24b8cbd47a9e75c635b1537aff16de18d350021 (patch)
tree621b05d169fdd9010ab58e4e7b467710efdb4da5 /options
parentb7061982079f33217e3d44f10d9892257f47c7ca (diff)
downloadmpv-f24b8cbd47a9e75c635b1537aff16de18d350021.tar.bz2
mpv-f24b8cbd47a9e75c635b1537aff16de18d350021.tar.xz
Do not call strerror()
...because everything is terrible. strerror() is not documented as having to be thread-safe by POSIX and C11. (Which is pretty much bullshit, because both mandate threads and some form of thread-local storage - so there's no excuse why implementation couldn't implement this in a thread-safe way. Especially with C11 this is ridiculous, because there is no way to use threads and convert error numbers to strings at the same time!) Since we heavily use threads now, we should avoid unsafe functions like strerror(). strerror_r() is in POSIX, but GNU/glibc deliberately fucks it up and gives the function different semantics than the POSIX one. It's a bit of work to convince this piece of shit to expose the POSIX standard function, and not the messed up GNU one. strerror_l() is also in POSIX, but only since the 2008 standard, and thus is not widespread. The solution is using avlibc (libavutil, by its official name), which handles the unportable details for us, mostly. We avoid some pain.
Diffstat (limited to 'options')
-rw-r--r--options/parse_configfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/options/parse_configfile.c b/options/parse_configfile.c
index 48a2c25318..1f0834959c 100644
--- a/options/parse_configfile.c
+++ b/options/parse_configfile.c
@@ -27,6 +27,7 @@
#include "osdep/io.h"
#include "parse_configfile.h"
+#include "common/common.h"
#include "common/msg.h"
#include "misc/ctype.h"
#include "m_option.h"
@@ -79,7 +80,7 @@ int m_config_parse_config_file(m_config_t *config, const char *conffile,
MP_VERBOSE(config, "\n");
if ((fp = fopen(conffile, "r")) == NULL) {
- MP_VERBOSE(config, "Can't open config file: %s\n", strerror(errno));
+ MP_VERBOSE(config, "Can't open config file: %s\n", mp_strerror(errno));
ret = 0;
goto out;
}