diff options
author | Wez Furlong <wez@php.net> | 2005-02-06 23:22:37 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-02-06 23:22:37 +0000 |
commit | d134fb2a8db3957bb487461138e49989f50631b5 (patch) | |
tree | 150d777d0fc7c371d003ba0629f1e00710b63b39 | |
parent | 056907890104b24db46fda321ee9ae2f6a717f05 (diff) | |
download | php-git-d134fb2a8db3957bb487461138e49989f50631b5.tar.gz |
update for api changes
-rwxr-xr-x | ext/pdo_mysql/mysql_driver.c | 2 | ||||
-rwxr-xr-x | ext/pdo_mysql/mysql_statement.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index 75beed0d5d..b8a7de8098 100755 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -167,7 +167,7 @@ static long pdo_mysql_last_insert_id(pdo_dbh_t *dbh TSRMLS_DC) return (long) mysql_insert_id(H->server); } -static int mysql_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC) +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); diff --git a/ext/pdo_mysql/mysql_statement.c b/ext/pdo_mysql/mysql_statement.c index 8365bc2f5f..80683d9268 100755 --- a/ext/pdo_mysql/mysql_statement.c +++ b/ext/pdo_mysql/mysql_statement.c @@ -135,7 +135,7 @@ static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) return 1; } -static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len TSRMLS_DC) +static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) { pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data; |