Browse Source

(pg_loreadall) Was using zval ** but forgot to convert to use


			
			
				PHP-4.0.5
			
			
		
Jouni Ahto 26 years ago
parent
commit
9322b9d9a5
  1. 2
      ext/pgsql/pgsql.c

2
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;

Loading…
Cancel
Save