[bindings/python] boolean values does not need to be released

This commit is contained in:
Benjamin Dauvergne 2012-05-05 22:58:09 +02:00
parent ec23b23455
commit df3656df4d
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ class Binding:
if not name:
raise Exception('Cannot free, missing a name')
if is_cstring(type):
print >>fd, ' lasso_release_string(%s);' % name
elif is_int(type, self.binding_data):
print >>fd, ' lasso_release_string(%s);' % name
elif is_int(type, self.binding_data) or is_boolean(type):
pass
elif is_xml_node(type):
print >>fd, ' lasso_release_xml_node(%s);' % name