Changeset: 8ade8baace9c for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8ade8baace9c
Modified Files:
        clients/mapiclient/dump.c
Branch: sciql
Log Message:

isarray can be NULL, check it


diffs (12 lines):

diff --git a/clients/mapiclient/dump.c b/clients/mapiclient/dump.c
--- a/clients/mapiclient/dump.c
+++ b/clients/mapiclient/dump.c
@@ -800,7 +800,7 @@ describe_table(Mapi mid, char *schema, c
        }
        if (view)
                view = strdup(view);
-       if (isarray[0] == 't') {
+       if (isarray && isarray[0] == 't') {
                isarray = "t";
        } else {
                isarray = "f";
_______________________________________________
checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to