Changeset: ac77dfe74aa6 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ac77dfe74aa6
Modified Files:
monetdb5/modules/mal/cluster.mx
Branch: Jul2012
Log Message:
Ignore return value that we don't use.
Found by coverity.
diffs (12 lines):
diff --git a/monetdb5/modules/mal/cluster.mx b/monetdb5/modules/mal/cluster.mx
--- a/monetdb5/modules/mal/cluster.mx
+++ b/monetdb5/modules/mal/cluster.mx
@@ -294,7 +294,7 @@ CLUSTER_column_any(BAT *nb, BAT *b, BAT
BATsetcount(nb, BATcount(b));
BATderiveProps(nb, 0);
if (!(nb->batDirty&2))
- nb = BATsetaccess(nb, BAT_READ);
+ BATsetaccess(nb, BAT_READ);
return MAL_SUCCEED;
}
/*
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list