mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-20 14:44:43 +00:00
committed by
Andreas Kling
parent
a43d9c4fe0
commit
29ef65c458
@@ -1047,7 +1047,7 @@ void Shell::add_entry_to_cache(const String& entry)
|
||||
if (match)
|
||||
return;
|
||||
|
||||
while (strcmp(cached_path[index].characters(), entry.characters()) < 0) {
|
||||
while (index < cached_path.size() && strcmp(cached_path[index].characters(), entry.characters()) < 0) {
|
||||
index++;
|
||||
}
|
||||
cached_path.insert(index, entry);
|
||||
|
||||
Reference in New Issue
Block a user