1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

zip: Ignore symlinks when recursively zipping files

This prevents infinite loops when symlinks point to a parent directory.
This commit is contained in:
Idan Horowitz 2022-01-28 15:38:31 +02:00
parent fcdd56633b
commit fa7ae7288b

View file

@ -101,11 +101,12 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
Core::DirIterator it(path, Core::DirIterator::Flags::SkipParentAndBaseDir);
while (it.has_next()) {
auto child_path = it.next_full_path();
if (!Core::File::is_directory(child_path)) {
if (Core::File::is_link(child_path))
return;
if (!Core::File::is_directory(child_path))
add_file(child_path);
} else {
else
handle_directory(child_path, handle_directory);
}
}
};