Commit:    7369a683797faa262b5aa859cf7347b14e74405c
Author:    Felipe Pena <felipe...@gmail.com>         Sun, 3 Feb 2013 10:57:31 
-0200
Parents:   60b5f6d4632260a90e0a59838aa672ba2376bffa
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=7369a683797faa262b5aa859cf7347b14e74405c

Log:
- Fixed ZTS build

Changed paths:
  M  ext/filter/logical_filters.c


Diff:
diff --git a/ext/filter/logical_filters.c b/ext/filter/logical_filters.c
index 9b436a7..b8df218 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
                }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to