diff options
Diffstat (limited to 'ext/xslt/sablot.c')
-rw-r--r-- | ext/xslt/sablot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/xslt/sablot.c b/ext/xslt/sablot.c index d71cd5401c..b9237da90f 100644 --- a/ext/xslt/sablot.c +++ b/ext/xslt/sablot.c @@ -41,7 +41,7 @@ static void register_sax_handler_pair(zval *, zval *, zval **); /* Free processor */ -static void free_processor(zend_rsrc_list_entry *); +static void free_processor(zend_rsrc_list_entry *rsrc TSRMLS_DC); /* Scheme handler functions */ static int scheme_getall(void *, SablotHandle, const char *, const char *, char **, int *); @@ -602,7 +602,7 @@ PHP_FUNCTION(xslt_free) /* {{{ free_processor() Free an XSLT processor */ -static void free_processor(zend_rsrc_list_entry *rsrc) +static void free_processor(zend_rsrc_list_entry *rsrc TSRMLS_DC) { php_xslt *handle = (php_xslt *) rsrc->ptr; /* A PHP-XSLT processor */ |