Skip to content

Commit 82914e4

Browse files
committed
Fix releasemanifest parsing
1 parent d86bbe3 commit 82914e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rlib/rads_rls.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ auto RLS::read(std::span<char const> src) -> RLS {
118118
rlib_rethrow(file.name = raw.strings.at(raw_file.name));
119119
file.version = raw_file.version;
120120
visited.clear();
121-
visited.resize(raw.file_count);
121+
visited.resize(raw.folder_count);
122122
for (auto p = file_parents[f]; p; p = folder_parents[p]) {
123123
rlib_assert(!visited[p]);
124124
visited[p] = true;

0 commit comments

Comments
 (0)