Changeset: 5c169f16909d for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5c169f16909d Modified Files: tools/embeddedpy/embeddedpy.c Branch: pyapi Log Message:
Fix small memory leak. diffs (11 lines): diff --git a/tools/embeddedpy/embeddedpy.c b/tools/embeddedpy/embeddedpy.c --- a/tools/embeddedpy/embeddedpy.c +++ b/tools/embeddedpy/embeddedpy.c @@ -263,6 +263,7 @@ cleanup: if (pyreturn_values) GDKfree(pyreturn_values); if (column_names) GDKfree(column_names); if (column_types) GDKfree(column_types); + if (sql_subtypes) GDKfree(sql_subtypes); if (append_bats) { for(i = 0; i < columns; i++) { if (append_bats[i].batid != int_nil) BBPunfix(append_bats[i].batid); _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list