Symbols closed to env should be static

This commit is contained in:
Nobuyoshi Nakada 2021-07-21 12:06:16 +09:00 коммит произвёл Koichi Sasada
Родитель 3aab870761
Коммит f471cf295b
1 изменённых файлов: 2 добавлений и 2 удалений

4
hash.c
Просмотреть файл

@ -4810,9 +4810,9 @@ extern char **environ;
#define ENVNMATCH(s1, s2, n) (memcmp((s1), (s2), (n)) == 0)
#endif
rb_nativethread_lock_t env_lock;
static rb_nativethread_lock_t env_lock;
const char*
static const char*
getenv_with_lock(const char *name)
{
rb_native_mutex_lock(&env_lock);