mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/zlib/zlib.c (zstream_end): should return value.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
753f4e97a2
commit
d35f410761
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jan 6 20:29:18 2005 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/zlib/zlib.c (zstream_end): should return value.
|
||||
|
||||
Thu Jan 6 19:59:03 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* win32/win32.c (rb_w32_close): didn't close socket handle.
|
||||
|
|
|
@ -682,7 +682,7 @@ zstream_end(z)
|
|||
if (RTEST(ruby_debug)) {
|
||||
rb_warning("attempt to close uninitialized zstream; ignored.");
|
||||
}
|
||||
return;
|
||||
return Qnil;
|
||||
}
|
||||
if (z->flags & ZSTREAM_FLAG_IN_STREAM) {
|
||||
if (RTEST(ruby_debug)) {
|
||||
|
|
Loading…
Reference in a new issue