From 19114fd3f40a9a0bf57ba2b7679e52440aa550b8 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 15 Nov 2013 10:29:24 +0000 Subject: [PATCH] fix ZTS --- php_http_message_body.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/php_http_message_body.c b/php_http_message_body.c index 2697f24..f48dbd6 100644 --- a/php_http_message_body.c +++ b/php_http_message_body.c @@ -852,10 +852,10 @@ PHP_METHOD(HttpMessageBody, stat) } } else { object_init(return_value); - add_property_long_ex(return_value, ZEND_STRS("size"), sb->sb.st_size); - add_property_long_ex(return_value, ZEND_STRS("atime"), sb->sb.st_atime); - add_property_long_ex(return_value, ZEND_STRS("mtime"), sb->sb.st_mtime); - add_property_long_ex(return_value, ZEND_STRS("ctime"), sb->sb.st_ctime); + add_property_long_ex(return_value, ZEND_STRS("size"), sb->sb.st_size TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("atime"), sb->sb.st_atime TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("mtime"), sb->sb.st_mtime TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("ctime"), sb->sb.st_ctime TSRMLS_CC); } } } -- 2.30.2