Changeset: b63199d332f7 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b63199d332f7
Modified Files:
        MonetDB5/src/modules/mal/mat.mx
Branch: Oct2010
Log Message:

fixed compilation with icc (potentially uninitialized variable)


diffs (12 lines):

diff -r 8da2b70f1b3f -r b63199d332f7 MonetDB5/src/modules/mal/mat.mx
--- a/MonetDB5/src/modules/mal/mat.mx   Fri Oct 01 12:38:56 2010 +0200
+++ b/MonetDB5/src/modules/mal/mat.mx   Fri Oct 01 12:39:48 2010 +0200
@@ -668,7 +668,7 @@
 static BAT *
 MATsort_any( BAT **map, BAT **bats, unsigned int len, BUN cnt, int rev )
 {
-       BAT *res, *in;
+       BAT *res = 0, *in;
        BUN i;
        bte *mapT;
        int len1, len2;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to