diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-11 03:54:04 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-11 03:54:04 +0000 |
| commit | 3edcc4bbc67f1534a0423b82d8d82b41a7a3b1a4 (patch) | |
| tree | b3c22235705cc59003034787872ecc7d754289e9 | |
| parent | 89dd7a690159e6548d1a3648105f10dabb121af9 (diff) | |
| download | ruby-3edcc4bbc67f1534a0423b82d8d82b41a7a3b1a4.tar.gz ruby-3edcc4bbc67f1534a0423b82d8d82b41a7a3b1a4.tar.xz ruby-3edcc4bbc67f1534a0423b82d8d82b41a7a3b1a4.zip | |
* hash.c (ruby_setenv): use ruby_strdup().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | hash.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -Wed Nov 11 12:53:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> +Wed Nov 11 12:54:02 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * hash.c (ruby_setenv): use ruby_strdup(). @@ -2069,7 +2069,7 @@ ruby_setenv(const char *name, const char *value) for (max = i; environ[max]; max++) ; tmpenv = ALLOC_N(char*, max+2); for (j=0; j<max; j++) /* copy environment */ - tmpenv[j] = strdup(environ[j]); + tmpenv[j] = ruby_strdup(environ[j]); tmpenv[max] = 0; environ = tmpenv; /* tell exec where it is now */ } |
