summaryrefslogtreecommitdiff
path: root/sapi/caudium
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2013-12-18 09:11:15 +0100
committerKalle Sommer Nielsen <kalle@php.net>2013-12-18 09:11:15 +0100
commitd02340bb39050c2ab0936bd8dc6a3292d6d2fcd9 (patch)
tree20b9c3af02db29c3e6ebf9af0acbe2cb670db50d /sapi/caudium
parentf883d3cc7a9162146dd50aca3a87dd8f090aec3c (diff)
downloadphp-git-d02340bb39050c2ab0936bd8dc6a3292d6d2fcd9.tar.gz
Kill a TSRMLS_FETCH() call in sapi/caudium
Diffstat (limited to 'sapi/caudium')
-rw-r--r--sapi/caudium/caudium.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sapi/caudium/caudium.c b/sapi/caudium/caudium.c
index d3b834fe93..4ab43069ec 100644
--- a/sapi/caudium/caudium.c
+++ b/sapi/caudium/caudium.c
@@ -395,11 +395,10 @@ php_caudium_sapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC)
* the client. Used for POST/PUT requests.
*/
-INLINE static int php_caudium_low_read_post(char *buf, uint count_bytes)
+INLINE static int php_caudium_low_read_post(char *buf, uint count_bytes TSRMLS_DC)
{
uint total_read = 0;
GET_THIS();
- TSRMLS_FETCH();
if(!MY_FD_OBJ->prog)
{
@@ -423,7 +422,7 @@ static int
php_caudium_sapi_read_post(char *buf, uint count_bytes TSRMLS_DC)
{
uint total_read = 0;
- THREAD_SAFE_RUN(total_read = php_caudium_low_read_post(buf, count_bytes), "read post");
+ THREAD_SAFE_RUN(total_read = php_caudium_low_read_post(buf, count_bytes TSRMLS_CC), "read post");
return total_read;
}