Teensy insignificant thrift bug

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
diff --git a/lib/cpp/src/processor/PeekProcessor.cpp b/lib/cpp/src/processor/PeekProcessor.cpp
index 21df9db..cff5edd 100644
--- a/lib/cpp/src/processor/PeekProcessor.cpp
+++ b/lib/cpp/src/processor/PeekProcessor.cpp
@@ -63,6 +63,7 @@
 
     // Peek at the variable
     peek(in, ftype, fid);
+    in->readFieldEnd();
   }
   in->readMessageEnd();
   in->getTransport()->readEnd();