From 7369a683797faa262b5aa859cf7347b14e74405c Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sun, 3 Feb 2013 10:57:31 -0200 Subject: [PATCH] - Fixed ZTS build --- ext/filter/logical_filters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/filter/logical_filters.c b/ext/filter/logical_filters.c index 9b436a779e..b8df2183b9 100644 --- a/ext/filter/logical_filters.c +++ b/ext/filter/logical_filters.c @@ -837,7 +837,7 @@ void php_filter_validate_mac(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */ /* The current token did not end with e.g. a "." */ RETURN_VALIDATION_FAILED } - if (php_filter_parse_hex(input + offset, length, &ret) < 0) { + if (php_filter_parse_hex(input + offset, length, &ret TSRMLS_CC) < 0) { /* The current token is no valid hexadecimal digit */ RETURN_VALIDATION_FAILED } -- 2.50.1