Thrift: Fix a bug in the skip function in Python's fastbinary.c

Reviewed By: mcslee

Other Notes:
Submitted by Ben Maurer (the original author).


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665479 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/py/src/protocol/fastbinary.c b/lib/py/src/protocol/fastbinary.c
index 3b7b5c0..5625f4b 100644
--- a/lib/py/src/protocol/fastbinary.c
+++ b/lib/py/src/protocol/fastbinary.c
@@ -806,7 +806,7 @@
 
   }
 
-  return false;
+  return true;
 
 #undef SKIPBYTES
 }
@@ -851,6 +851,8 @@
     if (item_spec == Py_None) {
       if (!skip(input, type)) {
         return false;
+      } else {
+        continue;
       }
     }