SWDEV-326796 - Fix hipMemset crash when the size passed is more than allocated

Change-Id: If3b15da0960f3af347fca62beedd8003cb958c2e


[ROCm/clr commit: c0ada4320b]
Este commit está contenido en:
Satyanvesh Dittakavi
2022-04-05 14:30:16 +00:00
padre 3cec88a755
commit 83e2a8a892
+3
Ver fichero
@@ -2287,6 +2287,9 @@ hipError_t ihipMemset_validate(void* dst, int64_t value, size_t valueSize,
// dst ptr is host ptr hence error
return hipErrorInvalidValue;
}
if (memory->getSize() < sizeBytes) {
return hipErrorInvalidValue;
}
return hipSuccess;
}