From: K.Kosako Date: Thu, 8 Mar 2018 06:02:40 +0000 (+0900) Subject: don't goto fail in POP process X-Git-Tag: v6.8.0~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b8e08369b3d2bfd583cda3362c9f6a80653f074;p=onig don't goto fail in POP process --- diff --git a/src/regexec.c b/src/regexec.c index c532322..2d9fc6f 100644 --- a/src/regexec.c +++ b/src/regexec.c @@ -887,8 +887,6 @@ onig_region_copy(OnigRegion* to, OnigRegion* from) CALLOUT_BODY(func, ONIG_CALLOUT_IN_RETRACTION, aname_id, anum, user, args, result);\ switch (result) {\ case ONIG_CALLOUT_FAIL:\ - goto fail;\ - break;\ case ONIG_CALLOUT_SUCCESS:\ break;\ case ONIG_CALLOUT_ABORT:\