Update of /cvsroot/monetdb/sql/src/backends/monet5
In directory 
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11703/sql/src/backends/monet5

Modified Files:
      Tag: Feb2010
        sql_gencode.mx 
Log Message:
Don't use a pointer to a jmp_buf since that doesn't work on Windows.

Index: sql_gencode.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql_gencode.mx,v
retrieving revision 1.352.2.3
retrieving revision 1.352.2.4
diff -u -d -r1.352.2.3 -r1.352.2.4
--- sql_gencode.mx      30 Jan 2010 11:26:22 -0000      1.352.2.3
+++ sql_gencode.mx      5 Feb 2010 17:01:26 -0000       1.352.2.4
@@ -547,8 +547,8 @@
        node *n;
 
        if (THRhighwater()) {
-               if (sql->client->exception_buf)
-                       longjmp(*sql->client->exception_buf, -1);
+               if (sql->client->exception_buf_initialized)
+                       longjmp(sql->client->exception_buf, -1);
                showException(SQL, "sql", "too many nested operators");
                assert(0);
        }


------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to