From: Felipe Pena Date: Sun, 3 Feb 2013 12:57:31 +0000 (-0200) Subject: - Fixed ZTS build X-Git-Tag: php-5.5.0alpha5~43^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7369a683797faa262b5aa859cf7347b14e74405c;p=php - Fixed ZTS build --- 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 }