]> granicus.if.org Git - php/commitdiff
(pg_loreadall) Was using zval ** but forgot to convert to use
authorJouni Ahto <jah@php.net>
Tue, 27 Jun 2000 13:26:04 +0000 (13:26 +0000)
committerJouni Ahto <jah@php.net>
Tue, 27 Jun 2000 13:26:04 +0000 (13:26 +0000)
       zend_get_parameters_ex(). Fixes #5244.

ext/pgsql/pgsql.c

index 81caec5eb1c320b43eb0526942aeafc517896af1..0391c247859aff229c586c42b7238eb76fc16c51 100644 (file)
@@ -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;