Check for bounds check error

This commit is contained in:
gingerBill
2024-07-09 13:35:52 +01:00
parent ccdad8b8dd
commit 68b70a2183

View File

@@ -259,6 +259,9 @@ bool try_cached_build(Checker *c) {
timestamp_str = string_trim_whitespace(timestamp_str);
path_str = string_trim_whitespace(path_str);
if (file_count >= files.count) {
goto do_write_file;
}
if (files[file_count] != path_str) {
goto do_write_file;
}