Commit 121bc16c authored by Xavier Thompson's avatar Xavier Thompson

Ensure cypclass results of subscript always end up decref-ed

parent 47fa3717
......@@ -3765,7 +3765,14 @@ class IndexNode(_IndexingBaseNode):
return py_object_type
def analyse_types(self, env):
return self.analyse_base_and_index_types(env, getting=True)
index_node = self.analyse_base_and_index_types(env, getting=True)
if index_node.type.is_cyp_class:
# If a[b] is a cypclass, a new reference is returned.
# In that case it must be stored for later decref-ing.
# XXX: future optimisation: only coerce to temporary
# when the value is not already assigned to a variable.
return index_node.coerce_to_temp(env)
return index_node
def analyse_target_types(self, env):
node = self.analyse_base_and_index_types(env, setting=True)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment