]> granicus.if.org Git - php/commitdiff
Kill another TSRMLS_FECH() in sapi/roxen
authorKalle Sommer Nielsen <kalle@php.net>
Wed, 18 Dec 2013 08:05:01 +0000 (09:05 +0100)
committerKalle Sommer Nielsen <kalle@php.net>
Wed, 18 Dec 2013 08:05:01 +0000 (09:05 +0100)
sapi/roxen/roxen.c

index c897ef62be6f6ce737aa2b532ea78af9aad1e42d..2b93cc5e913e2443d51a83edf87671bac8d8f4c7 100644 (file)
@@ -387,13 +387,12 @@ php_roxen_sapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC)
  * the client. Used for POST/PUT requests.
  */
 
-INLINE static int php_roxen_low_read_post(char *buf, uint count_bytes)
+INLINE static int php_roxen_low_read_post(char *buf, uint count_bytes TSRMLS_DC)
 {
   uint total_read = 0;
 #ifdef ROXEN_USE_ZTS
   GET_THIS();
 #endif
-  TSRMLS_FETCH();
   
   if(!MY_FD_OBJ->prog)
   {
@@ -417,7 +416,7 @@ static int
 php_roxen_sapi_read_post(char *buf, uint count_bytes TSRMLS_DC)
 {
   uint total_read = 0;
-  THREAD_SAFE_RUN(total_read = php_roxen_low_read_post(buf, count_bytes), "read post");
+  THREAD_SAFE_RUN(total_read = php_roxen_low_read_post(buf, count_bytes TSRMLS_CC), "read post");
   return total_read;
 }