1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00

A bit of further tuning.

This commit is contained in:
Ilia Alshanetsky
2005-07-11 14:46:01 +00:00
parent b3aa24ff98
commit e21f5f9592

View File

@@ -240,10 +240,10 @@ static char *pdo_mysql_last_insert_id(pdo_dbh_t *dbh, const char *name, unsigned
static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen, enum pdo_param_type paramtype TSRMLS_DC)
{
pdo_mysql_db_handle *H = (pdo_mysql_db_handle *)dbh->driver_data;
*quoted = emalloc(2*unquotedlen + 3);
*quoted = safe_emalloc(2, unquotedlen, 3);
*quotedlen = mysql_real_escape_string(H->server, *quoted + 1, unquoted, unquotedlen);
(*quoted)[0] =(*quoted)[*quotedlen + 1] = '"';
(*quoted)[*quotedlen+=2] = '\0';
(*quoted)[0] =(*quoted)[++*quotedlen] = '"';
(*quoted)[++*quotedlen] = '\0';
return 1;
}