rocr: Prevent int overflow in arithmetic operation
Cast range->x and range->y to uint64_t before performing multiplication
Signed-off-by: Alysa Liu <Alysa.Liu@amd.com>
[ROCm/ROCR-Runtime commit: 77b86ca908]
Этот коммит содержится в:
коммит произвёл
Liu, Alysa
родитель
ec4830eb5c
Коммит
ab747b1ffd
@@ -646,7 +646,7 @@ BlitSdma<RingIndexTy, HwIndexMonotonic, SizeToCountOffset, useGCR>::SubmitCopyRe
|
||||
BuildCopyRectCommand(append, dst, dst_offset, src, src_offset, range);
|
||||
}
|
||||
|
||||
uint64_t size = range->x * range->y * range->z;
|
||||
uint64_t size = static_cast<uint64_t>(range->x) * static_cast<uint64_t>(range->y) * range->z;
|
||||
|
||||
std::vector<core::Signal*> gang_signals(0);
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user