io.c (rb_io_fwrite): set path to NULL

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2004-11-27 14:08:45 +00:00
Родитель 5eec9fe63c
Коммит 39eac7ded8
1 изменённых файлов: 1 добавлений и 1 удалений

2
io.c
Просмотреть файл

@ -466,7 +466,7 @@ rb_io_fwrite(ptr, len, f)
of.f = f; of.f = f;
of.f2 = NULL; of.f2 = NULL;
of.mode = FMODE_WRITABLE; of.mode = FMODE_WRITABLE;
of.path = "(rb_io_fwrite)"; of.path = NULL;
return io_fwrite(ptr, len, &of); return io_fwrite(ptr, len, &of);
} }