File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ PHP NEWS
3030- Pcntl:
3131 . Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier)
3232
33+ - PgSQL:
34+ . Fixed result_type related stack corruption on LLP64 architectures. (cmb)
35+
3336- Sockets:
3437 . Fixed Solaris builds. (David Carlier)
3538
Original file line number Diff line number Diff line change @@ -2021,7 +2021,7 @@ PHP_FUNCTION(pg_fetch_object)
20212021PHP_FUNCTION (pg_fetch_all )
20222022{
20232023 zval * result ;
2024- long result_type = PGSQL_ASSOC ;
2024+ zend_long result_type = PGSQL_ASSOC ;
20252025 PGresult * pgsql_result ;
20262026 pgsql_result_handle * pg_result ;
20272027
@@ -5879,7 +5879,7 @@ PHP_FUNCTION(pg_select)
58795879 pgsql_link_handle * link ;
58805880 zend_string * table ;
58815881 zend_ulong option = PGSQL_DML_EXEC ;
5882- long result_type = PGSQL_ASSOC ;
5882+ zend_long result_type = PGSQL_ASSOC ;
58835883 PGconn * pg_link ;
58845884 zend_string * sql = NULL ;
58855885
You can’t perform that action at this time.
0 commit comments