From: Dag Sverre Seljebotn Date: Wed, 30 Jul 2008 10:08:41 +0000 (+0200) Subject: Forgot to release a temp in one place X-Git-Tag: 0.9.8.1~49^2~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=037e920972268da235ab45b8a5827795bcd9268e;p=cython.git Forgot to release a temp in one place --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index cb1883d2..699200d1 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -1075,6 +1075,7 @@ class NameNode(AtomicExprNode): is_initialized=not self.skip_assignment_decref, pos=self.pos, code=code) code.putln("%s = 0;" % rhstmp) + code.func.release_temp(rhstmp) def generate_deletion_code(self, code): if self.entry is None: