From 99613431b4a04b39ac02f564d3d2c842a5b27169 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Sat, 30 Jul 2016 16:28:42 +0200 Subject: [PATCH] Add missing TSRMLS_FETCH() --- ext/wddx/wddx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index 6387ca2ecdd..cde3e074064 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -373,6 +373,7 @@ void php_wddx_packet_start(wddx_packet *packet, char *comment, int comment_len) if (comment) { char *escaped; size_t escaped_len; + TSRMLS_FETCH(); escaped = php_escape_html_entities( comment, comment_len, &escaped_len, 0, ENT_QUOTES, NULL TSRMLS_CC);