Commit:    77d4db39571c092fff6883d92f38110c58d7f343
Author:    Anatol Belski <a...@php.net>         Tue, 10 Dec 2013 14:15:29 +0100
Parents:   a697297f5f328442994c6321c9661d1351036c4e
Branches:  str_size_and_int64

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

Log:
fixed return

Changed paths:
  M  ext/tidy/tidy.c


Diff:
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c
index 69cd19e..7870ddf 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -606,7 +606,7 @@ static void 
php_tidy_quick_repair(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_fil
 
                if (data_len > UINT_MAX) {
                        php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input data 
is too long");
-                       RETVAL_FALSE;
+                       RETURN_FALSE;
                }
 
                tidyBufInit(&buf);


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

Reply via email to