commit | 910105515ebe340fafe357f8fe1b898787a292a0 | [log] [tgz] |
---|---|---|
author | Barry Warsaw <barry@python.org> | Mon Aug 25 22:30:51 1997 +0000 |
committer | Barry Warsaw <barry@python.org> | Mon Aug 25 22:30:51 1997 +0000 |
tree | 804f74d26feeec505f49894fbcb19a26bb41249f | |
parent | 09f9547393770d5b305ee217b1b650402662beda [diff] |
unpack_sequence(): In finally clause, watch out for Py_DECREF evaluating its arguments twice.
diff --git a/Python/ceval.c b/Python/ceval.c index e08e1c9..c920d30 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -2076,8 +2076,8 @@ "unpack sequence of wrong size"); /* fall through */ finally: - for (; i > 0; i--) - Py_DECREF(*sp++); + for (; i > 0; i--, sp++) + Py_DECREF(*sp); return 0; }