summaryrefslogtreecommitdiffstats
path: root/ext/zlib/zlib.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-04 14:43:45 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-04 14:43:45 +0000
commit8eada2f83661254768573e08ea1c5665b936899c (patch)
tree471b97f04e17f7a7fb5bb2342f611c2be36c348e /ext/zlib/zlib.c
parent157bd36c77151d98a33543155ead77fb1813d1d3 (diff)
downloadruby-8eada2f83661254768573e08ea1c5665b936899c.tar.gz
ruby-8eada2f83661254768573e08ea1c5665b936899c.tar.xz
ruby-8eada2f83661254768573e08ea1c5665b936899c.zip
* include/ruby/intern.h (rb_file_open_str): declared.
* io.c (rb_file_open_str): defined. * ext/zlib/zlib.c (gzfile_s_open): use rb_file_open_str instead of rb_file_open. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 636ec325c..9bb8f3334 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -2294,7 +2294,7 @@ gzfile_s_open(int argc, VALUE *argv, VALUE klass, const char *mode)
}
filename = argv[0];
FilePathValue(filename);
- io = rb_file_open(RSTRING_PTR(filename), mode);
+ io = rb_file_open_str(filename, mode);
argv[0] = io;
return rb_gzfile_s_wrap(argc, argv, klass);