mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
This commit is contained in:
commit
32b6eacbc6
4 changed files with 37 additions and 3 deletions
|
@ -226,7 +226,11 @@ static zend_string *pdo_sqlite_last_insert_id(pdo_dbh_t *dbh, const zend_string
|
|||
/* NB: doesn't handle binary strings... use prepared stmts for that */
|
||||
static zend_string* sqlite_handle_quoter(pdo_dbh_t *dbh, const zend_string *unquoted, enum pdo_param_type paramtype)
|
||||
{
|
||||
char *quoted = safe_emalloc(2, ZSTR_LEN(unquoted), 3);
|
||||
char *quoted;
|
||||
if (ZSTR_LEN(unquoted) > (INT_MAX - 3) / 2) {
|
||||
return NULL;
|
||||
}
|
||||
quoted = safe_emalloc(2, ZSTR_LEN(unquoted), 3);
|
||||
/* TODO use %Q format? */
|
||||
sqlite3_snprintf(2*ZSTR_LEN(unquoted) + 3, quoted, "'%q'", ZSTR_VAL(unquoted));
|
||||
zend_string *quoted_str = zend_string_init(quoted, strlen(quoted), 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue