]> granicus.if.org Git - php/commitdiff
Fix compilation, I wonder when these were omitted??
authorSterling Hughes <sterling@php.net>
Tue, 10 Oct 2000 20:51:32 +0000 (20:51 +0000)
committerSterling Hughes <sterling@php.net>
Tue, 10 Oct 2000 20:51:32 +0000 (20:51 +0000)
ext/sablot/sablot.c

index 0b61e3f4a369e824398925a852f9c98edca7f5a0..3487e5c5dcd0d741876ba8ef2cce9c22c80ccb1d 100644 (file)
@@ -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;