From: Bryan Duxbury Date: Tue, 1 Sep 2009 23:18:34 +0000 (+0000) Subject: THRIFT-572. rb: fix RSTRING for 1.9 compatibility X-Git-Tag: 0.2.0~37 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=6f6318a652fc3401f92ea44869c6d80a13afa13d;p=common%2Fthrift.git THRIFT-572. rb: fix RSTRING for 1.9 compatibility Use a macro compatible with Ruby 1.9. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@810303 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/rb/ext/memory_buffer.c b/lib/rb/ext/memory_buffer.c index 3a9c101a..74efa2c0 100644 --- a/lib/rb/ext/memory_buffer.c +++ b/lib/rb/ext/memory_buffer.c @@ -54,7 +54,7 @@ VALUE rb_thrift_memory_buffer_read(VALUE self, VALUE length_value) { index = 0; } - if (RSTRING(data)->len < length) { + if (RSTRING_LEN(data) < length) { rb_raise(rb_eEOFError, "Not enough bytes remain in memory buffer"); }