@cryptotaxi247 / netdata-1 / commits / ef2a447aa

Resolve coverity issue 410232 (#16507)

Resolve CID 410232: Error handling issues (CHECKED_RETURN)

Stelios Fragkakis committed Nov 30, 2023 at 11:12 UTC ef2a447aa087e5cb010bbea9d087bc013486368e
1 file changed +2 -2
database/sqlite/sqlite_metadata.c
+2 -2
@@ -1477,8 +1477,8 @@ static void start_metadata_hosts(uv_work_t *req __maybe_unused)
1477 continue;
1478
1479 uuid_t host_uuid;
1480 - uuid_parse(machine_guid, host_uuid);
1481 - delete_host_chart_labels(&host_uuid);
1480 + if (!uuid_parse(machine_guid, host_uuid))
1481 + delete_host_chart_labels(&host_uuid);
1482
1483 freez(machine_guid);
1484 }