From 557e9d95317baf54e035e4fabfd45b15e6d6e708 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Wed, 5 Aug 2020 14:57:23 +0300 Subject: win32: scripting utils.get_env_list(): use UTF-8 lua/js utils.get_env_list() uses `environ' which was ANSI, thus it broke any unicode names/values. mpv already has an internal utf8_environ for win32, but it's used only at the getenv(..) wrapper and not exposed in itself, and also it has lazy initialization - on first getenv() call. Now `environ' maps to a function which ensures initialization while keeping it an l-value (like posix expects). The cost of this fuglyness is that files should include osdep/io.h (which now declares environ as extern) rather than declaring it themselves, or else the build will break on mingw. --- osdep/io.c | 6 ++++++ osdep/io.h | 9 +++++++++ player/javascript.c | 2 -- player/lua.c | 2 -- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/osdep/io.c b/osdep/io.c index db61a705fd..d4dcfc6fba 100644 --- a/osdep/io.c +++ b/osdep/io.c @@ -682,6 +682,12 @@ char *mp_getenv(const char *name) return NULL; } +char ***mp_penviron() +{ + mp_getenv(""); // ensure init + return &utf8_environ; // `environ' should be an l-value +} + off_t mp_lseek(int fd, off_t offset, int whence) { HANDLE h = (HANDLE)_get_osfhandle(fd); diff --git a/osdep/io.h b/osdep/io.h index 12907e5cc9..905558c284 100644 --- a/osdep/io.h +++ b/osdep/io.h @@ -105,6 +105,13 @@ int mp_closedir(DIR *dir); int mp_mkdir(const char *path, int mode); char *mp_win32_getcwd(char *buf, size_t size); char *mp_getenv(const char *name); + +#ifdef environ /* mingw defines it as _environ */ +#undef environ +#endif +#define environ (*mp_penviron()) /* ensure initialization and l-value */ +char ***mp_penviron(void); + off_t mp_lseek(int fd, off_t offset, int whence); // mp_stat types. MSVCRT's dev_t and ino_t are way too short to be unique. @@ -205,6 +212,8 @@ void freelocale(locale_t); #include +extern char **environ; + #endif /* __MINGW32__ */ int mp_mkostemps(char *template, int suffixlen, int flags); diff --git a/player/javascript.c b/player/javascript.c index e37fcd6c86..be28ef9e66 100644 --- a/player/javascript.c +++ b/player/javascript.c @@ -47,8 +47,6 @@ #include "client.h" #include "libmpv/client.h" -extern char **environ; - // List of builtin modules and their contents as strings. // All these are generated from player/javascript/*.js static const char *const builtin_files[][3] = { diff --git a/player/lua.c b/player/lua.c index 97ec8d33a4..363e1a52fd 100644 --- a/player/lua.c +++ b/player/lua.c @@ -53,8 +53,6 @@ #include "client.h" #include "libmpv/client.h" -extern char **environ; - // List of builtin modules and their contents as strings. // All these are generated from player/lua/*.lua static const char * const builtin_lua_scripts[][2] = { -- cgit v1.2.3