iliaa           Sun Jan  4 16:31:12 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/sqlite3        sqlite3.c 
  Log:
  Added missing initialization
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/sqlite3.c?r1=1.1.2.24&r2=1.1.2.25&diff_format=u
Index: php-src/ext/sqlite3/sqlite3.c
diff -u php-src/ext/sqlite3/sqlite3.c:1.1.2.24 
php-src/ext/sqlite3/sqlite3.c:1.1.2.25
--- php-src/ext/sqlite3/sqlite3.c:1.1.2.24      Sat Jan  3 22:08:38 2009
+++ php-src/ext/sqlite3/sqlite3.c       Sun Jan  4 16:31:12 2009
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: sqlite3.c,v 1.1.2.24 2009/01/03 22:08:38 felipe Exp $ */
+/* $Id: sqlite3.c,v 1.1.2.25 2009/01/04 16:31:12 iliaa Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -70,7 +70,7 @@
        php_sqlite3_db_object *db_obj;
        zval *object = getThis();
        char *filename, *encryption_key, *fullpath;
-       int filename_len, encryption_key_len;
+       int filename_len, encryption_key_len = 0;
        long flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE;
        db_obj = (php_sqlite3_db_object *)zend_object_store_get_object(object 
TSRMLS_CC);
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to