]> granicus.if.org Git - php/commitdiff
build fixes
authorDaniel Beulshausen <dbeu@php.net>
Fri, 7 Sep 2001 13:53:28 +0000 (13:53 +0000)
committerDaniel Beulshausen <dbeu@php.net>
Fri, 7 Sep 2001 13:53:28 +0000 (13:53 +0000)
ext/sablot/php_sablot.h
ext/sablot/sablot.c

index 45b28869ccab9a9e0b08349b0d99be3e55d7d5fc..805fc27ffaeaa732747efa2c086e242937ea4012 100644 (file)
@@ -119,7 +119,7 @@ ZEND_END_MODULE_GLOBALS(sablot)
 
 
 #ifdef ZTS
-#define SABLOTG(v) TSRMG(sablot_globals_id, php_sablot_globals *, v)
+#define SABLOTG(v) TSRMG(sablot_globals_id, zend_sablot_globals *, v)
 #else
 #define SABLOTG(v) (sablot_globals.v)
 #endif
index f70ba9bb23eb7a4ccb06d3f17ff42172203ccfe5..bd681486f8875a996fc3f74646bae84da1e9dda3 100644 (file)
@@ -168,14 +168,14 @@ static SchemeHandler sh = {
 
 ZEND_DECLARE_MODULE_GLOBALS(sablot)
 
-static unsigned char sixth_arg_force_ref[] = { 6, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_FORCE };
-static unsigned char third_arg_force_ref[] = { 4, BYREF_NONE, BYREF_NONE, BYREF_FORCE, BYREF_NONE };
+static unsigned char a6_arg_force_ref[] = { 6, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_FORCE };
+static unsigned char a3_arg_force_ref[] = { 4, BYREF_NONE, BYREF_NONE, BYREF_FORCE, BYREF_NONE };
 
 function_entry sablot_functions[] = {
     PHP_FE(xslt_output_begintransform,    NULL)
     PHP_FE(xslt_output_endtransform,      NULL)
-    PHP_FE(xslt_transform,                sixth_arg_force_ref)
-    PHP_FE(xslt_process,                  third_arg_force_ref)
+    PHP_FE(xslt_transform,                a6_arg_force_ref)
+    PHP_FE(xslt_process,                  a3_arg_force_ref)
     PHP_FE(xslt_create,                   NULL)
     PHP_FE(xslt_run,                      NULL)
     PHP_FE(xslt_fetch_result,             NULL)
@@ -701,7 +701,6 @@ PHP_FUNCTION(xslt_openlog)
     int ret      = 0, 
         loglevel = 0, 
         argc     = ZEND_NUM_ARGS();
-    TSRMLS_FETCH();
     
     if (argc < 2 || argc > 3 ||
         zend_get_parameters_ex(argc, &xh, &logfile, &opt_loglevel) == FAILURE) {
@@ -1659,6 +1658,8 @@ static zval *_php_sablot_string_zval(const char *str)
 static zval *_php_sablot_resource_zval(long value)
 {
     zval *ret;
+    TSRMLS_FETCH();
+
     MAKE_STD_ZVAL(ret);
     
     Z_TYPE_P(ret) = IS_RESOURCE;