mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
MFB: Added missing initialization
This commit is contained in:
parent
dac8ee1cb6
commit
02b2b42a01
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ PHP_METHOD(sqlite3, open)
|
|||
zval *object = getThis();
|
||||
char *filename, *encryption_key, *fullpath;
|
||||
zend_uchar filename_type;
|
||||
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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue