Changeset: 42942d9811d8 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=42942d9811d8
Modified Files:
        sql/src/storage/bat/bat_storage.mx
Branch: default
Log Message:

initialize variable to fix compilation:
sql/src/storage/bat/bat_storage.mx:464: error: "t" may be used uninitialized in 
this function


diffs (12 lines):

diff -r 42ce64eed47e -r 42942d9811d8 sql/src/storage/bat/bat_storage.mx
--- a/sql/src/storage/bat/bat_storage.mx        Tue May 25 11:00:46 2010 +0200
+++ b/sql/src/storage/bat/bat_storage.mx        Tue May 25 15:56:20 2010 +0200
@@ -461,7 +461,7 @@
 find_col( sql_trans *tr, char *sname, char *tname, char *cname )
 {
        sql_schema *s = find_sql_schema(tr, sname);
-       sql_table *t;
+       sql_table *t = NULL;
        sql_column *c = NULL;
 
        if (s) 
_______________________________________________
Checkin-list mailing list
Checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to