Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
4c83595
)
THRIFT-2117 Cocoa TBinaryProtocol strictWrite should be set to true by default
author
Carl Yeksigian
<carl@apache.org>
Tue, 13 Aug 2013 22:09:59 +0000
(18:09 -0400)
committer
Carl Yeksigian
<carl@apache.org>
Tue, 13 Aug 2013 22:09:59 +0000
(18:09 -0400)
Client: cocoa
Patch: David Robakowski
lib/cocoa/src/protocol/TBinaryProtocol.m
patch
|
blob
|
history
diff --git
a/lib/cocoa/src/protocol/TBinaryProtocol.m
b/lib/cocoa/src/protocol/TBinaryProtocol.m
index
bee616e
..
1508acc
100644
(file)
--- a/
lib/cocoa/src/protocol/TBinaryProtocol.m
+++ b/
lib/cocoa/src/protocol/TBinaryProtocol.m
@@
-49,7
+49,7
@@
static TBinaryProtocolFactory * gSharedFactory = nil;
- (id) initWithTransport: (id <TTransport>) transport
{
- return [self initWithTransport: transport strictRead: NO strictWrite:
NO
];
+ return [self initWithTransport: transport strictRead: NO strictWrite:
YES
];
}
- (id) initWithTransport: (id <TTransport>) transport