Added missing NULL checks and corrected API return values as per validation

This commit is contained in:
Anusha Godavarthy Surya
2019-06-27 00:19:05 +05:30
والد d4a92519eb
کامیت 3d5f6be1c7
4فایلهای تغییر یافته به همراه58 افزوده شده و 50 حذف شده
+4 -2
مشاهده پرونده
@@ -41,8 +41,10 @@ THE SOFTWARE.
hipError_t ihipDeviceCanAccessPeer(int* canAccessPeer, hipCtx_t thisCtx, hipCtx_t peerCtx) {
hipError_t err = hipSuccess;
if ((thisCtx != NULL) && (peerCtx != NULL)) {
if(canAccessPeer == NULL) {
err = hipErrorInvalidValue;
}
else if ((thisCtx != NULL) && (peerCtx != NULL)) {
if (thisCtx == peerCtx) {
*canAccessPeer = 0;
tprintf(DB_MEM, "Can't be peer to self. (this=%s, peer=%s)\n",