wez             Tue Jul 13 13:15:13 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/standard       html.c 
  Log:
  MFH: add missing break
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/html.c?r1=1.63.2.18&r2=1.63.2.19&ty=u
Index: php-src/ext/standard/html.c
diff -u php-src/ext/standard/html.c:1.63.2.18 php-src/ext/standard/html.c:1.63.2.19
--- php-src/ext/standard/html.c:1.63.2.18       Sat Apr 17 19:07:27 2004
+++ php-src/ext/standard/html.c Tue Jul 13 13:15:13 2004
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: html.c,v 1.63.2.18 2004/04/17 23:07:27 derick Exp $ */
+/* $Id: html.c,v 1.63.2.19 2004/07/13 17:15:13 wez Exp $ */
 
 /*
  * HTML entity resources:
@@ -505,6 +505,7 @@
                                                        case 0x50:      /* 6, 2nd */
                                                                utf |= ((this_char & 
0x3f) << 24);
                                                                stat++;
+                                                               break;
                                                        default:
                                                                /* invalid */
                                                                more = 0;

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

Reply via email to