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

[ROCm/hip commit: 3d5f6be1c7]
このコミットが含まれているのは:
Anusha Godavarthy Surya
2019-06-27 00:19:05 +05:30
コミット f1d6b56fc4
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",