Update of /cvsroot/monetdb/MonetDB5/src/modules/mal
In directory
sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8694/MonetDB5/src/modules/mal
Modified Files:
remote.mx
Log Message:
made compile with icc and assertions disabled:
avoid setting a variable that is never used
Index: remote.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/remote.mx,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- remote.mx 25 Jul 2007 09:31:40 -0000 1.27
+++ remote.mx 22 Aug 2007 07:29:01 -0000 1.28
@@ -635,7 +635,7 @@
*/
str RMTexec(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci) {
str conn, mod, func, ident, arg, tmp;
- int argc, i, len;
+ int i, len;
connection c;
char qbuf[512]; /* FIXME: make this dynamic */
MapiHdl mhdl;
@@ -671,8 +671,7 @@
mapi_close_handle(mhdl);
/* handle the arguments to the function */
- argc = pci->argc - 3 /* ret, conn, func */;
- assert(argc >= 0);
+ assert(pci->argc >= 3); /* ret, conn, func, ... */
/* put the arguments one by one, and dynamically build the
* invocation string */
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins