diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-13 04:04:33 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-13 04:04:33 +0000 |
commit | 25d28732cbe56e1123de9479fff0732a0ad46912 (patch) | |
tree | 01d4c0b9e584f4dfe0e5533bbf8b46335caf671e | |
parent | 167553dd4af4605b228c3b061a29c7be920db683 (diff) | |
download | ruby-25d28732cbe56e1123de9479fff0732a0ad46912.tar.gz ruby-25d28732cbe56e1123de9479fff0732a0ad46912.tar.xz ruby-25d28732cbe56e1123de9479fff0732a0ad46912.zip |
* hash.c (ruby_setenv): fixed SEGV. [ruby-dev:26186]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | hash.c | 13 |
2 files changed, 9 insertions, 8 deletions
@@ -1,3 +1,7 @@ +Mon Jun 13 13:03:08 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * hash.c (ruby_setenv): fixed SEGV. [ruby-dev:26186] + Mon Jun 13 01:54:20 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * signal.c (sigexit): call rb_thread_signal_exit() instead of @@ -1824,27 +1824,24 @@ ruby_setenv(name, value) tmpenv[max] = 0; environ = tmpenv; /* tell exec where it is now */ } - if (!value) { - if (environ != origenviron) { + if (environ[i]) { char **envp = origenviron; while (*envp && *envp != environ[i]) envp++; if (!*envp) free(environ[i]); - } + if (!value) { while (environ[i]) { environ[i] = environ[i+1]; i++; } return; } - if (!environ[i]) { /* does not exist yet */ + } + else { /* does not exist yet */ + if (!value) return; REALLOC_N(environ, char*, i+2); /* just expand it a bit */ environ[i+1] = 0; /* make sure it's null terminated */ } - else { - if (environ[i] != origenviron[i]) - free(environ[i]); - } environ[i] = ALLOC_N(char, strlen(name) + strlen(value) + 2); #ifndef MSDOS sprintf(environ[i],"%s=%s",name,value); /* all that work just for this */ |