From: Sterling Hughes Date: Tue, 10 Oct 2000 20:51:32 +0000 (+0000) Subject: Fix compilation, I wonder when these were omitted?? X-Git-Tag: php-4.0.3~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8759dcc0ce1e074ffa739a1624d8709350448f48;p=php Fix compilation, I wonder when these were omitted?? --- diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c index 0b61e3f4a3..3487e5c5dc 100644 --- a/ext/sablot/sablot.c +++ b/ext/sablot/sablot.c @@ -490,11 +490,11 @@ PHP_FUNCTION(xslt_openlog) zval **xh, **logfile, **opt_loglevel; - php_sablot *handle; int ret = 0, loglevel = 0, argc = ZEND_NUM_ARGS(); + SABLOTLS_FETCH(); if (argc < 2 || argc > 3 || zend_get_parameters_ex(argc, &xh, &logfile, &opt_loglevel) == FAILURE) { @@ -684,7 +684,8 @@ PHP_FUNCTION(xslt_error) php_sablot *handle; int serrno = 0, argc = ZEND_NUM_ARGS(); - + SABLOTLS_FETCH(); + if (argc < 0 || argc > 1 || zend_get_parameters_ex(argc, &xh) == FAILURE) { WRONG_PARAM_COUNT;