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
parent d4a92519eb
commit 3d5f6be1c7
4 changed files with 58 additions and 50 deletions
+4 -2
View File
@@ -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",