Changeset: b625ead63fc0 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b625ead63fc0
Modified Files:
        sql/backends/monet5/sql.c
Branch: Jun2016
Log Message:

errstr is never NULL


diffs (12 lines):

diff --git a/sql/backends/monet5/sql.c b/sql/backends/monet5/sql.c
--- a/sql/backends/monet5/sql.c
+++ b/sql/backends/monet5/sql.c
@@ -3464,7 +3464,7 @@ mvc_import_table_wrap(Client cntxt, MalB
        if (fname && s == NULL)
                throw(IO, "bstreams.create", "Failed to create block stream");
        if (b == NULL)
-               throw(SQL, "importTable", "Failed to import table %s", 
be->mvc->errstr? be->mvc->errstr:"");
+               throw(SQL, "importTable", "Failed to import table %s", 
be->mvc->errstr);
        bat2return(stk, pci, b);
        GDKfree(b);
        return msg;
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to