1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix some uouv in ext/pgsql

This commit is contained in:
Ilija Tovilo
2023-07-31 13:51:08 +02:00
parent 322da7bcc3
commit 82aa4253f1

View File

@@ -1693,7 +1693,7 @@ PHP_FUNCTION(pg_fetch_result)
{
zval *result;
zend_string *field_name;
zend_long row, field_offset;
zend_long row, field_offset = 0;
bool row_is_null = false;
PGresult *pgsql_result;
pgsql_result_handle *pg_result;
@@ -2004,7 +2004,7 @@ static void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type, bo
{
zval *result;
zend_string *field_name;
zend_long row, field_offset;
zend_long row, field_offset = 0;
bool row_is_null = false;
PGresult *pgsql_result;
pgsql_result_handle *pg_result;