You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2013/03/07 20:45:40 UTC

git commit: THRIFT-1873 Binary protocol factory ignores struct read/write flags

Updated Branches:
  refs/heads/master 6a7463a72 -> 5cb0d22a0


THRIFT-1873 Binary protocol factory ignores struct read/write flags

Patch: Jens Geyer


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/5cb0d22a
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/5cb0d22a
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/5cb0d22a

Branch: refs/heads/master
Commit: 5cb0d22a03c709ec9f581a615b9274ab765cea26
Parents: 6a7463a
Author: Jens Geyer <je...@apache.org>
Authored: Thu Mar 7 20:44:22 2013 +0100
Committer: Jens Geyer <je...@apache.org>
Committed: Thu Mar 7 20:44:22 2013 +0100

----------------------------------------------------------------------
 lib/delphi/src/Thrift.Protocol.pas |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/5cb0d22a/lib/delphi/src/Thrift.Protocol.pas
----------------------------------------------------------------------
diff --git a/lib/delphi/src/Thrift.Protocol.pas b/lib/delphi/src/Thrift.Protocol.pas
index 33e17d7..4c1954c 100644
--- a/lib/delphi/src/Thrift.Protocol.pas
+++ b/lib/delphi/src/Thrift.Protocol.pas
@@ -1225,7 +1225,7 @@ end;
 
 function TBinaryProtocolImpl.TFactory.GetProtocol( const trans: ITransport): IProtocol;
 begin
-  Result := TBinaryProtocolImpl.Create( trans );
+  Result := TBinaryProtocolImpl.Create( trans, FStrictRead, FStrictWrite);
 end;
 
 end.