Merge branch 'PHP-7.0'

* PHP-7.0:
  Added missing semicolon
This commit is contained in:
Dmitry Stogov 2016-02-15 16:37:48 +03:00
commit 052651b06a

View File

@ -3074,7 +3074,7 @@ static void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type)
RETVAL_LONG(PQgetlength(pgsql_result, pgsql_row, field_offset));
break;
case PHP_PG_DATA_ISNULL:
RETVAL_LONG(PQgetisnull(pgsql_result, pgsql_row, field_offset))
RETVAL_LONG(PQgetisnull(pgsql_result, pgsql_row, field_offset));
break;
}
}