Null check before setting offset

[ROCm/hip commit: bc4cdf7e41]
This commit is contained in:
Rahul Garg
2018-07-24 12:25:40 +05:30
parent af407ce8be
commit c13c5c9476
+2 -1
View File
@@ -676,7 +676,8 @@ hipError_t hipGetTextureAlignmentOffset(size_t* offset, const textureReference*
auto ctx = ihipGetTlsDefaultCtx();
if (ctx) {
*offset = 0;
if(offset != nullptr)
*offset = 0;
}
return ihipLogStatus(hip_status);
}