From 881fa113682b1560aca76328615bdc391caf8862 Mon Sep 17 00:00:00 2001 From: "K.Kosako" Date: Mon, 11 Feb 2019 14:01:10 +0900 Subject: [PATCH] fix initialization of FinishCode[] values --- src/regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0