SWDEV-560304 - Fix segfault with invalid stream (#1360)
This commit is contained in:
zatwierdzone przez
GitHub
rodzic
5850d5b973
commit
f332888366
@@ -936,6 +936,10 @@ hipError_t hipStreamGetAttribute(hipStream_t stream, hipStreamAttrID attr,
|
||||
hipError_t hipStreamCopyAttributes(hipStream_t dst, hipStream_t src) {
|
||||
HIP_INIT_API(hipStreamCopyAttributes, dst, src);
|
||||
|
||||
if (!hip::isValid(src) || !hip::isValid(dst)) {
|
||||
HIP_RETURN(hipErrorInvalidResourceHandle);
|
||||
}
|
||||
|
||||
getStreamPerThread(src);
|
||||
getStreamPerThread(dst);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user