From bc444b034e79b521b0512198a1feaa37da6d3ee7 Mon Sep 17 00:00:00 2001 From: David Reiss Date: Thu, 14 Feb 2008 20:20:08 +0000 Subject: [PATCH] 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 --- lib/py/src/protocol/fastbinary.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/py/src/protocol/fastbinary.c b/lib/py/src/protocol/fastbinary.c index 3b7b5c09..5625f4b4 100644 --- a/lib/py/src/protocol/fastbinary.c +++ b/lib/py/src/protocol/fastbinary.c @@ -806,7 +806,7 @@ skip(DecodeBuffer* input, TType type) { } - return false; + return true; #undef SKIPBYTES } @@ -851,6 +851,8 @@ decode_struct(DecodeBuffer* input, PyObject* output, PyObject* spec_seq) { if (item_spec == Py_None) { if (!skip(input, type)) { return false; + } else { + continue; } } -- 2.17.1