From: Bram Moolenaar Date: Mon, 6 Jun 2022 09:07:01 +0000 (+0100) Subject: patch 8.2.5062: Coverity warns for dead code X-Git-Tag: v8.2.5062 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f89abf69d2c485c38da9a45161e806de0f86f2f;p=thirdparty%2Fvim.git patch 8.2.5062: Coverity warns for dead code Problem: Coverity warns for dead code. Solution: Remove the dead code. --- diff --git a/src/match.c b/src/match.c index 72276527d3..c9231876bc 100644 --- a/src/match.c +++ b/src/match.c @@ -446,14 +446,6 @@ next_search_hl( // or none is found in this line. for (;;) { -# ifdef FEAT_RELTIME - // Stop searching after passing the time limit. - if (timed_out) - { - shl->lnum = 0; // no match found in time - break; - } -# endif // Three situations: // 1. No useful previous match: search from start of line. // 2. Not Vi compatible or empty match: continue at next character. diff --git a/src/os_unix.c b/src/os_unix.c index b23adb710f..72f80c95dc 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -8422,7 +8422,7 @@ start_timeout(long msec) if (ret == 0) { alarm_pending = sigismember(&sigs, SIGALRM); - ret = ret == 0 ? sigprocmask(SIG_SETMASK, &saved_sigs, NULL) : ret; + ret = sigprocmask(SIG_SETMASK, &saved_sigs, NULL); } if (unlikely(ret != 0 || alarm_pending < 0)) { diff --git a/src/version.c b/src/version.c index 074652ba4d..542028606d 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 5062, /**/ 5061, /**/