]> granicus.if.org Git - php/commitdiff
Fix #33618
authorWez Furlong <wez@php.net>
Fri, 8 Jul 2005 19:25:37 +0000 (19:25 +0000)
committerWez Furlong <wez@php.net>
Fri, 8 Jul 2005 19:25:37 +0000 (19:25 +0000)
ext/pdo_mysql/mysql_driver.c

index c73f4d2939ba74fc727608b1a763925d430c18aa..538cf0972569c8468d753cd21baa0211f73a9b56 100755 (executable)
@@ -233,9 +233,8 @@ static long mysql_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRM
 static char *pdo_mysql_last_insert_id(pdo_dbh_t *dbh, const char *name, unsigned int *len TSRMLS_DC)
 {
        pdo_mysql_db_handle *H = (pdo_mysql_db_handle *)dbh->driver_data;
-       char *id = NULL;
-
-       *len = spprintf(&id, 0, "%lld", mysql_insert_id(H->server));
+       char *id = php_pdo_int64_to_str(mysql_insert_id(H->server) TSRMLS_CC);
+       *len = strlen(id);
        return id;
 }