Diff
Not logged in

Differences From:

File src/th.c part of check-in [cd965de682] - Fix some compiler warnings. by drh on 2009-01-24 10:44:43. [view]

To:

File src/th.c part of check-in [dffe11c29c] - Update to the latest version of SQLite (3.6.20rc1) and fix some compiler warnings. by drh on 2009-11-01 19:25:47. [view]

@@ -1824,10 +1824,10 @@
     double fLeft;
     double fRight;
 
     /* Left and right arguments as strings */
-    char *zLeft = 0; int nLeft;
-    char *zRight = 0; int nRight;
+    char *zLeft = 0; int nLeft = 0;
+    char *zRight = 0; int nRight = 0;
 
     /* Evaluate left and right arguments, if they exist. */
     if( pExpr->pLeft ){
       rc = exprEval(interp, pExpr->pLeft);