Skip to content

Commit

Permalink
Fix: Fixed infinite loop at the end of scans.
Browse files Browse the repository at this point in the history
When the scan progress of a scan was at 100% some times the
processing of the data in gvmd got into an infinite loop. That
problem is fixed now.
  • Loading branch information
jhelmold committed Sep 1, 2023
1 parent cdf97f3 commit 48f627f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -48006,7 +48006,10 @@ hosts_set_identifiers (report_t report)
GString *select;

if (report_host_noticeable (report, ip) == 0)
continue;
{
host_index++;
continue;
}

quoted_host_name = sql_quote (ip);

Expand Down

0 comments on commit 48f627f

Please sign in to comment.