SWDEV-373235 - Fixed segfault when nullptr function is passed to hipKernelNameRef

Change-Id: If23fbbd19ad92fd0b3fa888dca09e7fe705c0c56


[ROCm/clr commit: 1274f2a54c]
This commit is contained in:
Ioannis Assiouras
2022-12-13 12:06:50 +00:00
parent 09b894eeef
commit f1407eb433
+1 -1
View File
@@ -38,7 +38,7 @@ int hipGetStreamDeviceId(hipStream_t stream) {
}
const char* hipKernelNameRef(const hipFunction_t function) {
return FunctionName(function).c_str();
return (function != nullptr) ? FunctionName(function).c_str() : nullptr;
}
const char* hipKernelNameRefByPtr(const void* host_function, hipStream_t stream) {