Update of /cvsroot/monetdb/pathfinder/runtime
In directory 
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20251/pathfinder/runtime

Modified Files:
      Tag: Nov2009
        xrpc_client.mx 
Log Message:

fixing compilation with icc:

.../pathfinder/runtime/xrpc_client.mx(737): error #589: transfer of control 
bypasses initialization of:
            variable "time_xrpcClntDeSeria" (declared at line 791)
          goto error;
          ^
[...]
.../pathfinder/runtime/xrpc_client.mx(787): error #589: transfer of control 
bypasses initialization of:
            variable "time_xrpcClntDeSeria" (declared at line 791)
          goto error;
          ^


Index: xrpc_client.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/xrpc_client.mx,v
retrieving revision 1.56.2.4
retrieving revision 1.56.2.5
diff -u -d -r1.56.2.4 -r1.56.2.5
--- xrpc_client.mx      23 Dec 2009 09:44:26 -0000      1.56.2.4
+++ xrpc_client.mx      24 Dec 2009 13:21:24 -0000      1.56.2.5
@@ -724,6 +724,7 @@
         int port,
         bool updCall)
 {
+    lng time_xrpcClntDeSeria = 0;
     char respStatus[1024];
     int ret;
     buffer *resp;
@@ -788,7 +789,7 @@
     }
 
     /* Start timing Client DeSerialisation */
-    lng time_xrpcClntDeSeria = GDKusec();
+    time_xrpcClntDeSeria = GDKusec();
     if (!(shredBAT = BATnew(TYPE_str, TYPE_bat, 32))){
         GDKerror("response2bat: failed to malloc shredBAT\n");
         goto error;


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to