SWDEV-1 - Add missing checks in hipDrvMemcpy3D.cc

[ROCm/hip-tests commit: d3bf2019cf]
This commit is contained in:
Maneesh Gupta
2022-10-11 11:15:26 +05:30
gecommit door GitHub
bovenliggende cfa404b1f4
commit dd4ecee1cb
@@ -501,8 +501,8 @@ void DrvMemcpy3D<T>::HostArray_DrvMemcpy3D(bool device_context_change) {
/* DeAllocating the memory */
template <typename T>
void DrvMemcpy3D<T>::DeAllocateMemory() {
hipArrayDestroy(arr);
hipArrayDestroy(arr1);
HIP_CHECK(hipArrayDestroy(arr));
HIP_CHECK(hipArrayDestroy(arr1));
free(hData);
}