A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/neovim/neovim/commit/79fe9dedcfede1d2038b47a21f21a995051deaa2 below:

address Coverity failure #14996 · neovim/neovim@79fe9de · GitHub

File tree Expand file treeCollapse file tree 1 file changed

+2

-1

lines changed

Filter options

Expand file treeCollapse file tree 1 file changed

+2

-1

lines changed Original file line number Diff line number Diff line change

@@ -4666,7 +4666,8 @@ win_free (

4666 4666

// If there already is an entry with "wi_win" set to NULL it

4667 4667

// must be removed, it would never be used.

4668 4668

for (wip2 = buf->b_wininfo; wip2 != NULL; wip2 = wip2->wi_next) {

4669 -

if (wip2->wi_win == NULL) {

4669 +

// `wip2 != wip` to satisfy Coverity. #14884

4670 +

if (wip2 != wip && wip2->wi_win == NULL) {

4670 4671

if (wip2->wi_next != NULL) {

4671 4672

wip2->wi_next->wi_prev = wip2->wi_prev;

4672 4673

}

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4