hipmemcpy2D handle height 0

Change-Id: I46bf89e81559c3bfccac0dd0ccd78eee9058c7e3
This commit is contained in:
agodavar
2020-12-31 01:41:06 -05:00
parent e7c85da68b
commit 7dcf2769ae
+1 -1
View File
@@ -1557,7 +1557,7 @@ hipError_t ihipMemcpy2D(void* dst, size_t dpitch, const void* src, size_t spitch
if (spitch == 0 || dpitch == 0) {
return hipErrorUnknown;
}
if (width == 0) {
if (width == 0 || height == 0) {
return hipSuccess;
}