2
0

added null check

Change-Id: I7631965286bad5684bacb7e38c63031b5c691dc0
Este cometimento está contido em:
Sarbojit Sarkar
2020-05-20 03:50:36 -04:00
ascendente fe9aa9356b
cometimento 06a0de3567
+3
Ver ficheiro
@@ -110,6 +110,9 @@ hipError_t ihipMemcpy(void* dst, const void* src, size_t sizeBytes, hipMemcpyKin
// Skip if nothing needs writing.
return hipSuccess;
}
if (dst == nullptr || src == nullptr) {
return hipErrorInvalidValue;
}
amd::Command* command = nullptr;
amd::Command::EventWaitList waitList;