tony2001                Tue Oct 10 22:03:27 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/mbstring/oniguruma     regexec.c 
  Log:
  missing variable initialization
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/oniguruma/regexec.c?r1=1.5.4.4&r2=1.5.4.5&diff_format=u
Index: php-src/ext/mbstring/oniguruma/regexec.c
diff -u php-src/ext/mbstring/oniguruma/regexec.c:1.5.4.4 
php-src/ext/mbstring/oniguruma/regexec.c:1.5.4.5
--- php-src/ext/mbstring/oniguruma/regexec.c:1.5.4.4    Thu Sep 28 07:22:37 2006
+++ php-src/ext/mbstring/oniguruma/regexec.c    Tue Oct 10 22:03:27 2006
@@ -3667,6 +3667,7 @@
       MATCH_ARG_INIT(msa, option, region, start);
 #ifdef USE_COMBINATION_EXPLOSION_CHECK
       msa.state_check_buff = (void* )0;
+      msa.state_check_buff_size = 0;
 #endif
       MATCH_AND_RETURN_CHECK;
       goto mismatch;

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

Reply via email to