From 85995e88d49c442b5b113c2676456133e79f5c02 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 13 Sep 2013 07:28:25 +0000 Subject: hash.c: utility functions from ruby_setenv * hash.c (invalid_envname, check_envname): extract utility functions from ruby_setenv(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- hash.c | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/hash.c b/hash.c index f649f20d06..1098118737 100644 --- a/hash.c +++ b/hash.c @@ -2585,16 +2585,32 @@ getenvblocksize() } #endif +#if !defined(HAVE_SETENV) || !defined(HAVE_UNSETENV) +NORETURN(static void invalid_envname(const char *name)); + +static void +invalid_envname(const char *name) +{ + rb_syserr_fail_str(EINVAL, rb_sprintf("ruby_setenv(%s)", name)); +} + +static const char * +check_envname(const char *name) +{ + if (strchr(name, '=')) { + invalid_envname(name); + } + return name; +} +#endif + void ruby_setenv(const char *name, const char *value) { #if defined(_WIN32) VALUE buf; int failed = 0; - if (strchr(name, '=')) { - fail: - rb_syserr_fail_str(EINVAL, rb_sprintf("ruby_setenv(%s)", name)); - } + check_envname(name); if (value) { const char* p = GetEnvironmentStringsA(); if (!p) goto fail; /* never happen */ @@ -2615,14 +2631,18 @@ ruby_setenv(const char *name, const char *value) if (!SetEnvironmentVariable(name, value) && GetLastError() != ERROR_ENVVAR_NOT_FOUND) goto fail; } - if (failed) goto fail; + if (failed) { + fail: + invalid_envname(name); + } #elif defined(HAVE_SETENV) && defined(HAVE_UNSETENV) #undef setenv #undef unsetenv if (value) { if (setenv(name, value, 1)) rb_sys_fail_str(rb_sprintf("setenv(%s)", name)); - } else { + } + else { #ifdef VOID_UNSETENV unsetenv(name); #else @@ -2633,9 +2653,7 @@ ruby_setenv(const char *name, const char *value) #elif defined __sun size_t len; char **env_ptr, *str; - if (strchr(name, '=')) { - rb_syserr_fail_str(EINVAL, rb_sprintf("ruby_setenv(%s)", name)); - } + len = strlen(name); for (env_ptr = GET_ENVIRON(environ); (str = *env_ptr) != 0; ++env_ptr) { if (!strncmp(str, name, len) && str[len] == '=') { @@ -2653,9 +2671,7 @@ ruby_setenv(const char *name, const char *value) #else /* WIN32 */ size_t len; int i; - if (strchr(name, '=')) { - rb_syserr_fail_str(EINVAL, rb_sprintf("ruby_setenv(%s)", name)); - } + i=envix(name); /* where does it go? */ if (environ == origenviron) { /* need we copy environment? */ -- cgit v1.2.3