|
From: <cre...@us...> - 2007-07-11 05:28:20
|
Revision: 1716
http://frontierkernel.svn.sourceforge.net/frontierkernel/?rev=1716&view=rev
Author: creecode
Date: 2007-07-10 22:28:22 -0700 (Tue, 10 Jul 2007)
Log Message:
-----------
in mysqlgetrowverb function, set type to novaluetype instead of NULL
Modified Paths:
--------------
Frontier/trunk/Common/source/langmysql.c
Modified: Frontier/trunk/Common/source/langmysql.c
===================================================================
--- Frontier/trunk/Common/source/langmysql.c 2007-07-11 03:21:48 UTC (rev 1715)
+++ Frontier/trunk/Common/source/langmysql.c 2007-07-11 05:28:22 UTC (rev 1716)
@@ -718,11 +718,11 @@
default:
- type = NULL;
+ type = novaluetype;
} // switch
- if ( type != NULL )
+ if ( type != novaluetype )
if ( ! coercevalue ( &val, type ) )
goto error;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|