From: K.Kosako Date: Mon, 11 Feb 2019 05:01:10 +0000 (+0900) Subject: fix initialization of FinishCode[] values X-Git-Tag: v6.9.2_rc1~65^2~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=881fa113682b1560aca76328615bdc391caf8862;p=onig fix initialization of FinishCode[] values --- diff --git a/src/regexec.c b/src/regexec.c index 8f928ca..66de511 100644 --- a/src/regexec.c +++ b/src/regexec.c @@ -2460,7 +2460,7 @@ match_at(regex_t* reg, const UChar* str, const UChar* end, #endif #else #if defined(USE_THREADED_CODE) && defined(USE_DIRECT_THREADED_CODE) - static Operation FinishCode[] = { { {.opcode=OP_FINISH, .opaddr=&&L_FINISH} } }; + static Operation FinishCode[] = { { {.opaddr=&&L_FINISH} } }; #else static Operation FinishCode[] = { { {OP_FINISH} } }; #endif