mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-15 04:41:00 +01:00
9ea2ac02b3
When the archive contained fewer than 20 entries, `archive.len() / 20` evaluated to 0 and the subsequent `i % report_progress_every` operation panicked with 'attempt to calculate the remainder with a divisor of zero'. Clamp the divisor to a minimum of 1. (Written by Copilot) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>