commit | 713623bee6105f6b8ee946cecde4dd98847f6a2b | [log] [tgz] |
---|---|---|
author | Kevin Clark <kclark@apache.org> | Fri Nov 14 17:09:52 2008 +0000 |
committer | Kevin Clark <kclark@apache.org> | Fri Nov 14 17:09:52 2008 +0000 |
tree | 7b8c4e2716818bccd9b48cc4ad68840523dd35a7 | |
parent | 159383f789651150ae33748d7d68ef22108d614c [diff] |
rb: Validate struct _after_ read. [THRIFT-206] git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@714069 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/rb/lib/thrift/struct.rb b/lib/rb/lib/thrift/struct.rb index a51f209..4b99168 100644 --- a/lib/rb/lib/thrift/struct.rb +++ b/lib/rb/lib/thrift/struct.rb
@@ -82,7 +82,6 @@ end def read(iprot) - validate # TODO(kevinclark): Make sure transport is C readable if iprot.respond_to?(:decode_binary) iprot.decode_binary(self, iprot.trans) @@ -96,6 +95,7 @@ end iprot.read_struct_end end + validate end def write(oprot)