Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-07-21 23:44:15 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-07-21 23:44:15 +0400
commitf19ae708206260dd4d703d6099100eddd90fe9c9 (patch)
tree26d56a0e802e1876170d30bcd765973f5e12a42a /source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
parent5fed0560d9184d9dd64625ce6af70f67e0ad0960 (diff)
Fixed a refcount bug concerning ChainPredicateIterator.
Diffstat (limited to 'source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h b/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
index 39a794b27f7..5a31ac407d5 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
@@ -22,6 +22,8 @@ extern PyTypeObject ChainPredicateIterator_Type;
typedef struct {
BPy_ChainingIterator py_c_it;
ChainPredicateIterator *cp_it;
+ PyObject *upred;
+ PyObject *bpred;
} BPy_ChainPredicateIterator;
///////////////////////////////////////////////////////////////////////////////////////////