1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
parent 5eec9fe63c
commit 39eac7ded8

2
io.c
View file

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