Changeset: 1aa10425ac75 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1aa10425ac75
Modified Files:
        gdk/gdk_relop.c
Branch: headless
Log Message:

Off-by-one error preventing module listing in Mtest from working.


diffs (12 lines):

diff --git a/gdk/gdk_relop.c b/gdk/gdk_relop.c
--- a/gdk/gdk_relop.c
+++ b/gdk/gdk_relop.c
@@ -299,7 +299,7 @@
        ri = col_iterator(r);
        nil = ATOMnilptr(r->type);
        if (l->type == TYPE_void) {
-               if (l->count > 0 && l->seqbase + l->count >= r->count)
+               if (l->count > 0 && l->seqbase + l->count > r->count)
                        goto bunins_failed;
                for (o = 0, p = l->seqbase; o < l->count; o++, p++) {
                        v = BUNhead(ri, p);
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to