diff options
author | Antony Dovgal <tony2001@php.net> | 2006-10-10 22:03:27 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-10-10 22:03:27 +0000 |
commit | 11235cff7bdb27102d3b6b1eff25589aca77a545 (patch) | |
tree | 83be916876dc5d19df8c7b7f36a3e75450b79c06 | |
parent | df5c300303c8cfb1569645fa45a3f7f3dc59201a (diff) | |
download | php-git-11235cff7bdb27102d3b6b1eff25589aca77a545.tar.gz |
missing variable initialization
-rw-r--r-- | ext/mbstring/oniguruma/regexec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mbstring/oniguruma/regexec.c b/ext/mbstring/oniguruma/regexec.c index c117a8c430..769ed30c90 100644 --- a/ext/mbstring/oniguruma/regexec.c +++ b/ext/mbstring/oniguruma/regexec.c @@ -3667,6 +3667,7 @@ onig_search(regex_t* reg, const UChar* str, const UChar* end, 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; |