argument count fix

This commit is contained in:
Hartmut Holzgraefe 2001-09-18 20:42:37 +00:00
parent 563c0670e5
commit d330072db9

View File

@ -1140,7 +1140,7 @@ PHP_FUNCTION(dbplus_rquery)
zval **name, **dbpath;
int argc;
if (argc <1 || argc>2 || zend_get_parameters_ex(1, &name, &dbpath) == FAILURE){
if ((argc <1) || (argc>2) || (zend_get_parameters_ex(2, &name, &dbpath) == FAILURE)){
WRONG_PARAM_COUNT;
}