SWDEV-315736: event_out param correct nullptr check

Signed-off-by: sdashmiz <shadi.dashmiz@amd.com>
Change-Id: Id164bc47c928e9c4541b29a0c9128e41e313ed22


[ROCm/clr commit: 2ae3b6d13f]
This commit is contained in:
sdashmiz
2022-03-03 12:45:14 -05:00
committed by Shadi Dashmiz
parent 0c90a8cda6
commit f604a24a65
+1 -1
View File
@@ -1651,7 +1651,7 @@ hipError_t hipGraphAddEventWaitNode(hipGraphNode_t* pGraphNode, hipGraph_t graph
hipError_t hipGraphEventWaitNodeGetEvent(hipGraphNode_t node, hipEvent_t* event_out) {
HIP_INIT_API(hipGraphEventWaitNodeGetEvent, node, event_out);
if (node == nullptr || *event_out == nullptr) {
if (node == nullptr || event_out == nullptr) {
HIP_RETURN(hipErrorInvalidValue);
}
reinterpret_cast<hipGraphEventWaitNode*>(node)->GetParams(event_out);