Revision: 168
http://informixdb.svn.sourceforge.net/informixdb/?rev=168&view=rev
Author: chaese
Date: 2007-10-14 18:51:43 -0700 (Sun, 14 Oct 2007)
Log Message:
-----------
Don't mix declarations and assignments, some compilers don't like that.
Modified Paths:
--------------
trunk/informixdb/ext/_informixdb.ec
Modified: trunk/informixdb/ext/_informixdb.ec
===================================================================
--- trunk/informixdb/ext/_informixdb.ec 2007-10-15 01:49:21 UTC (rev 167)
+++ trunk/informixdb/ext/_informixdb.ec 2007-10-15 01:51:43 UTC (rev 168)
@@ -2840,12 +2840,11 @@
struct sqlda *tdaOut = self->daOut;
int i;
void (*oldsighandler)(int);
- oldsighandler = NULL;
-
EXEC SQL BEGIN DECLARE SECTION;
char *cursorName;
EXEC SQL END DECLARE SECTION;
+ oldsighandler = NULL;
cursorName = self->cursorName;
require_cursor_open(self);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|