Changeset: fb28f2a40014 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/fb28f2a40014
Modified Files:
monetdb5/optimizer/opt_pipes.c
Branch: resource_management
Log Message:
small fix
diffs (20 lines):
diff --git a/monetdb5/optimizer/opt_pipes.c b/monetdb5/optimizer/opt_pipes.c
--- a/monetdb5/optimizer/opt_pipes.c
+++ b/monetdb5/optimizer/opt_pipes.c
@@ -490,11 +490,11 @@ opt_pipes_reset(void)
{
for (int i = 0; i < MAXOPTPIPES; i++)
if (pipes[i].name && !pipes[i].builtin) {
- GDKfree(pipes[i].name);
- if (pipes[i].def)
- for (int n = 0; pipes[i].def[n]; n++)
- GDKfree(pipes[i].def[n]);
- GDKfree(pipes[i].def);
+ //GDKfree(pipes[i].name);
+ //if (pipes[i].def)
+ // for (int n = 0; pipes[i].def[n]; n++)
+ // GDKfree(pipes[i].def[n]);
+ //GDKfree(pipes[i].def);
pipes[i] = (struct pipeline) {
.name = NULL,
};
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]