From 9322b9d9a545e0519ef2a4e7de07ede77de854ed Mon Sep 17 00:00:00 2001 From: Jouni Ahto Date: Tue, 27 Jun 2000 13:26:04 +0000 Subject: [PATCH] (pg_loreadall) Was using zval ** but forgot to convert to use zend_get_parameters_ex(). Fixes #5244. --- ext/pgsql/pgsql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 81caec5eb1..0391c24785 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1487,7 +1487,7 @@ PHP_FUNCTION(pg_loreadall) switch(ZEND_NUM_ARGS()) { case 1: - if (zend_get_parameters(ht, 1, &pgsql_id)==FAILURE) { + if (zend_get_parameters_ex(1, &pgsql_id)==FAILURE) { RETURN_FALSE; } break; -- 2.50.1