Teensy insignificant thrift bug
authorMark Slee <mcslee@apache.org>
Fri, 22 Jun 2007 19:43:12 +0000 (19:43 +0000)
committerMark Slee <mcslee@apache.org>
Fri, 22 Jun 2007 19:43:12 +0000 (19:43 +0000)
Summary: Wasn't causing any issues because it's a noop with the binary protocol

Reviewed By: jwang

Test Plan: honky tonk, no diff in functionality

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665140 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/src/processor/PeekProcessor.cpp

index 21df9db..cff5edd 100644 (file)
@@ -63,6 +63,7 @@ bool PeekProcessor::process(boost::shared_ptr<TProtocol> in,
 
     // Peek at the variable
     peek(in, ftype, fid);
+    in->readFieldEnd();
   }
   in->readMessageEnd();
   in->getTransport()->readEnd();