summaryrefslogtreecommitdiff
path: root/ext/sablot/sablot.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2001-08-05 15:29:47 +0000
committerSascha Schumann <sas@php.net>2001-08-05 15:29:47 +0000
commit8aef1930565d36807647e52b5e5b7c4e3f4a57b1 (patch)
treeb5aedc9051d566b1bcf94fef22e5d2798b33a7ea /ext/sablot/sablot.c
parent02fea7ed2358518441637a1fbe5113bc4f92dd9d (diff)
downloadphp-git-8aef1930565d36807647e52b5e5b7c4e3f4a57b1.tar.gz
more tsrm cleanup
Diffstat (limited to 'ext/sablot/sablot.c')
-rw-r--r--ext/sablot/sablot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c
index f3b3f8520d..6547f9050e 100644
--- a/ext/sablot/sablot.c
+++ b/ext/sablot/sablot.c
@@ -282,7 +282,7 @@ PHP_FUNCTION(xslt_output_begintransform)
* Start output buffering, NULL signifies that no "user-space" output function
* will be used. The 0 disables chunking
*/
- php_start_ob_buffer(NULL, 0);
+ php_start_ob_buffer(NULL, 0 TSRMLS_CC);
}
/* }}} */
@@ -345,7 +345,7 @@ PHP_FUNCTION(xslt_output_endtransform)
* current output buffer (so we don't send data twice)
*/
if (tRes)
- php_end_ob_buffer(0, 0);
+ php_end_ob_buffer(0, 0 TSRMLS_CC);
PUTS(tRes);
@@ -360,7 +360,7 @@ PHP_FUNCTION(xslt_output_endtransform)
if (tRes)
SablotFree(tRes);
else
- php_end_ob_buffer(1, 0);
+ php_end_ob_buffer(1, 0 TSRMLS_CC);
}
/* }}} */