Commit 2f382ab7 by lhchavez

mwindow: Fix a bug in the LRU window finding code

This change now updates the `lru_window` variable to match the current
file's MRU window. This makes it such that it doesn't always choose the
file that happened to come last in the list of window files, and instead
should now correctly choose the file with the least-recently-used one.
parent 3392da3c
...@@ -312,8 +312,10 @@ static int git_mwindow_find_lru_file_locked(git_mwindow_file **out) ...@@ -312,8 +312,10 @@ static int git_mwindow_find_lru_file_locked(git_mwindow_file **out)
current_file, &mru_window, NULL, true, GIT_MWINDOW__MRU)) { current_file, &mru_window, NULL, true, GIT_MWINDOW__MRU)) {
continue; continue;
} }
if (!lru_window || lru_window->last_used > mru_window->last_used) if (!lru_window || lru_window->last_used > mru_window->last_used) {
lru_window = mru_window;
lru_file = current_file; lru_file = current_file;
}
} }
if (!lru_file) { if (!lru_file) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment