summaryrefslogtreecommitdiff
path: root/redfish-core/lib/trigger.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/lib/trigger.hpp')
-rw-r--r--redfish-core/lib/trigger.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/redfish-core/lib/trigger.hpp b/redfish-core/lib/trigger.hpp
index bb0a0e2ac3..cdd5781b99 100644
--- a/redfish-core/lib/trigger.hpp
+++ b/redfish-core/lib/trigger.hpp
@@ -80,7 +80,7 @@ inline std::optional<nlohmann::json>
const std::vector<DiscreteThresholdParams>* discreteParams =
std::get_if<std::vector<DiscreteThresholdParams>>(&thresholdParams);
- if (!discreteParams)
+ if (discreteParams == nullptr)
{
return std::nullopt;
}
@@ -113,7 +113,7 @@ inline std::optional<nlohmann::json>
const std::vector<NumericThresholdParams>* numericParams =
std::get_if<std::vector<NumericThresholdParams>>(&thresholdParams);
- if (!numericParams)
+ if (numericParams == nullptr)
{
return std::nullopt;
}
@@ -204,7 +204,8 @@ inline bool fillTrigger(
}
}
- if (!name || !discrete || !sensors || !reports || !actions || !thresholds)
+ if (name == nullptr || discrete == nullptr || sensors == nullptr ||
+ reports == nullptr || actions == nullptr || thresholds == nullptr)
{
BMCWEB_LOG_ERROR
<< "Property type mismatch or property is missing in Trigger: "