diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-12-17 18:49:44 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-12-17 18:50:24 +0100 |
commit | 73533c7dc9347df901e7c24a215d4a54f800ffde (patch) | |
tree | 3e0996be0ef3c8edf5ffd17857a76a64c09dbe7b | |
parent | 710f3985c59ce78bc414a12f8baa34d68b06e99d (diff) | |
download | php-git-73533c7dc9347df901e7c24a215d4a54f800ffde.tar.gz |
PDO MySQL: Use correct type when setting INT_AND_FLOAT_NATIVE
mysqlnd expects this to be an unsigned int, not a bool.
-rw-r--r-- | ext/pdo_mysql/mysql_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index 0523b81faf..830104952a 100644 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -827,7 +827,7 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options) } #ifdef PDO_USE_MYSQLND - bool int_and_float_native = true; + unsigned int int_and_float_native = 1; if (mysql_options(H->server, MYSQLND_OPT_INT_AND_FLOAT_NATIVE, (const char *) &int_and_float_native)) { pdo_mysql_error(dbh); goto cleanup; |