mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.1'
* PHP-8.1: Fix result_type related stack corruption on LLP64 architectures
This commit is contained in:
commit
072b09fd35
1 changed files with 2 additions and 2 deletions
|
@ -2021,7 +2021,7 @@ PHP_FUNCTION(pg_fetch_object)
|
|||
PHP_FUNCTION(pg_fetch_all)
|
||||
{
|
||||
zval *result;
|
||||
long result_type = PGSQL_ASSOC;
|
||||
zend_long result_type = PGSQL_ASSOC;
|
||||
PGresult *pgsql_result;
|
||||
pgsql_result_handle *pg_result;
|
||||
|
||||
|
@ -5879,7 +5879,7 @@ PHP_FUNCTION(pg_select)
|
|||
pgsql_link_handle *link;
|
||||
zend_string *table;
|
||||
zend_ulong option = PGSQL_DML_EXEC;
|
||||
long result_type = PGSQL_ASSOC;
|
||||
zend_long result_type = PGSQL_ASSOC;
|
||||
PGconn *pg_link;
|
||||
zend_string *sql = NULL;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue