fix division by 0

This commit is contained in:
UrBnW 2020-04-30 15:03:13 +02:00
parent dd9f2f3a1e
commit a3faad6bc1
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ sub manage_selection {
}
$self->{global} = {
rta => $total_time_elapsed * 1000 / ($self->{option_packets} - $total_packet_lost),
rta => ($self->{option_packets} > $total_packet_lost) ? $total_time_elapsed * 1000 / ($self->{option_packets} - $total_packet_lost) : 0,
rtmax => $max_time_elapsed * 1000,
rtmin => $min_time_elapsed * 1000,
pl => int($total_packet_lost * 100 / $self->{option_packets}),