Changeset: 937f0f1eca04 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=937f0f1eca04
Modified Files:
        MonetDB5/src/mal/mal_debugger.mx
Branch: default
Log Message:

Protect agains incomplete information.


diffs (12 lines):

diff -r e46c43643010 -r 937f0f1eca04 MonetDB5/src/mal/mal_debugger.mx
--- a/MonetDB5/src/mal/mal_debugger.mx  Sun Oct 03 20:11:58 2010 +0200
+++ b/MonetDB5/src/mal/mal_debugger.mx  Sun Oct 03 20:12:42 2010 +0200
@@ -1093,7 +1093,7 @@
                                        while (fs != NULL) {
                                                if (fcnname == NULL)
                                                        printSignature(out, fs, 
0);
-                                               else if (strcmp(fcnname, 
getFcnName(fs->def)) == 0)
+                                               else if (fs->def && 
strcmp(fcnname, getFcnName(fs->def)) == 0)
                                                        printSignature(out, fs, 
0);
                                                fs = fs->peer;
                                        }
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to