persistentstorage/sql/SQLite/func.c
branchRCL_3
changeset 24 cc28652e0254
parent 23 26645d81f48d
--- a/persistentstorage/sql/SQLite/func.c	Tue Aug 31 16:57:14 2010 +0300
+++ b/persistentstorage/sql/SQLite/func.c	Wed Sep 01 12:39:58 2010 +0100
@@ -911,7 +911,7 @@
     flags = SQLITE_PTR_TO_INT(sqlite3_user_data(context));
     if( flags & 1 ){
       while( nIn>0 ){
-        int len = 0;                   /* Initialized to placate warning. */
+        int len;
         for(i=0; i<nChar; i++){
           len = aLen[i];
           if( memcmp(zIn, azChar[i], len)==0 ) break;
@@ -923,7 +923,7 @@
     }
     if( flags & 2 ){
       while( nIn>0 ){
-        int len = 0;                   /* Initialized to placate warning. */
+        int len;
         for(i=0; i<nChar; i++){
           len = aLen[i];
           if( len<=nIn && memcmp(&zIn[nIn-len],azChar[i],len)==0 ) break;