mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
Don't return nil rows for the programs table (#5715)
This commit is contained in:
parent
0b2cd791d3
commit
6550462468
@ -81,7 +81,9 @@ void keyEnumPrograms(const std::string& key,
|
||||
r["install_date"] = aKey.at("data");
|
||||
}
|
||||
}
|
||||
results.push_back(r);
|
||||
if (!r.empty()) {
|
||||
results.push_back(r);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user