Modified:
trunk/driver/results.c
Log:
fix obvious non-ptr assignment (found by gcc warning)
Modified: trunk/driver/results.c
===================================================================
--- trunk/driver/results.c 2007-07-03 23:39:14 UTC (rev 550)
+++ trunk/driver/results.c 2007-07-05 22:57:00 UTC (rev 551)
@@ -604,7 +604,7 @@
CharacterAttributePtr= nparam;
if ( !NumericAttributePtr )
- NumericAttributePtr= strparam;
+ NumericAttributePtr= &strparam;
if ( (error= check_result(stmt)) != SQL_SUCCESS )
MYODBCDbgReturnReturn(error);
| Thread |
|---|
| • Connector/ODBC 3.51 commit: r551 - trunk/driver | jbalint | 6 Jul |