summaryrefslogtreecommitdiff
path: root/ext/zlib
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-28 13:55:13 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-28 13:55:13 +0000
commitf80356eb91da126f32d3691456186255bc1c659c (patch)
tree09503f43bb2516c05716dc83b2a6a3cd592e4bc9 /ext/zlib
parentc4e79b640b7afd9b9e243b4faaa51b4ab22c474c (diff)
* ext/zlib/zlib.c (zstream_run): desperately guard the variable.
[ruby-core:20576] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/zlib')
-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 30c3241674..9c6cf9495e 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -708,7 +708,7 @@ zstream_run(struct zstream *z, Bytef *src, uInt len, int flush)
/* keep reference to `z->input' so as not to be garbage collected
after zstream_reset_input() and prevent `z->stream.next_in'
from dangling. */
- guard = z->input;
+ RB_GC_GUARD(guard) = z->input;
}
if (z->stream.avail_out == 0) {