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

Change-Id: If3b15da0960f3af347fca62beedd8003cb958c2e


[ROCm/clr commit: c0ada4320b]
Этот коммит содержится в:
Satyanvesh Dittakavi
2022-04-05 14:30:16 +00:00
родитель 3cec88a755
Коммит 83e2a8a892
+3
Просмотреть файл
@@ -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;
}