Skip to content

Commit

Permalink
Merge pull request #2075 from greenbone/GEA-273_problem_at_the_end_of…
Browse files Browse the repository at this point in the history
…_scans

Fix: Fixed infinite loop at the end of scans.
  • Loading branch information
timopollmeier authored Sep 4, 2023
2 parents bdb0223 + 0378165 commit 159e286
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 159e286

Please sign in to comment.