diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-06 10:36:03 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-06 10:36:03 +0000 |
| commit | 94d89c27d7c8b923f64609e21674c6348391c6ed (patch) | |
| tree | 78c856f3a12ac065101519b03aaf0cf9de186e57 | |
| parent | 4917aef04ec531c110b3485838ff6acfa15dca05 (diff) | |
mjit.c: fixed missing variable
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | mjit.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1077,6 +1077,9 @@ init_header_filename(void) VALUE basedir_val; char *basedir; size_t baselen; +#ifdef _WIN32 + char *p; +#endif basedir_val = rb_const_get(rb_cObject, rb_intern_const("TMP_RUBY_PREFIX")); basedir = StringValuePtr(basedir_val); |
