File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1235,7 +1235,7 @@ PHP_METHOD(SQLite3, openBlob)
1235
1235
{
1236
1236
php_sqlite3_db_object * db_obj ;
1237
1237
zval * object = ZEND_THIS ;
1238
- char * table , * column , * dbname = "main" , * mode = "rb" ;
1238
+ const char * table , * column , * dbname = "main" , * mode = "rb" ;
1239
1239
size_t table_len , column_len , dbname_len ;
1240
1240
zend_long rowid , flags = SQLITE_OPEN_READONLY , sqlite_flags = 0 ;
1241
1241
sqlite3_blob * blob = NULL ;
@@ -1335,7 +1335,7 @@ PHP_METHOD(SQLite3, backup)
1335
1335
{
1336
1336
php_sqlite3_db_object * source_obj ;
1337
1337
php_sqlite3_db_object * destination_obj ;
1338
- char * source_dbname = "main" , * destination_dbname = "main" ;
1338
+ const char * source_dbname = "main" , * destination_dbname = "main" ;
1339
1339
size_t source_dbname_length , destination_dbname_length ;
1340
1340
zval * source_zval = ZEND_THIS ;
1341
1341
zval * destination_zval ;
You can’t perform that action at this time.
0 commit comments