зеркало из https://github.com/github/ruby.git
* ext/gdbm/gdbm.c (rb_gdbm_fetch): remove needless cast.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
97826efddd
Коммит
8f86bc858f
|
@ -1,3 +1,7 @@
|
|||
Mon Jan 5 15:49:45 2009 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* ext/gdbm/gdbm.c (rb_gdbm_fetch): remove needless cast.
|
||||
|
||||
Mon Jan 5 12:52:08 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (init_env): use user profile folder than personal
|
||||
|
|
|
@ -290,7 +290,7 @@ rb_gdbm_fetch(GDBM_FILE dbm, datum key)
|
|||
str = rb_str_new(val.dptr, val.dsize);
|
||||
free(val.dptr);
|
||||
OBJ_TAINT(str);
|
||||
return (VALUE)str;
|
||||
return str;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
|
|
Загрузка…
Ссылка в новой задаче