THRIFT-1132. csharp: Deserialization error in TApplicationException C#

Add in a missing ReadStructBegin call.

Patch: Wojciech Baćmaga

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1090392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2011-04-08 18:31:52 +00:00
parent 08b309997f
commit c32e8309f4

View File

@ -52,6 +52,7 @@ namespace Thrift
string message = null;
ExceptionType type = ExceptionType.Unknown;
iprot.ReadStructBegin();
while (true)
{
field = iprot.ReadFieldBegin();