OSDN Git Service

test/amdgpu: don't free unused bo handle
authorNirmoy Das <nirmoy.das@amd.com>
Mon, 14 Oct 2019 14:53:36 +0000 (16:53 +0200)
committerNirmoy Das <nirmoy.das@amd.com>
Tue, 15 Oct 2019 11:18:12 +0000 (13:18 +0200)
Signed-off-by: Nirmoy Das <nirmoy.das@amd.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
tests/amdgpu/bo_tests.c

index 7cff4cf..4c11665 100644 (file)
@@ -267,7 +267,6 @@ static void amdgpu_memory_alloc(void)
 
 static void amdgpu_mem_fail_alloc(void)
 {
-       amdgpu_bo_handle bo;
        int r;
        struct amdgpu_bo_alloc_request req = {0};
        amdgpu_bo_handle buf_handle;
@@ -282,7 +281,7 @@ static void amdgpu_mem_fail_alloc(void)
        CU_ASSERT_EQUAL(r, -ENOMEM);
 
        if (!r) {
-               r = amdgpu_bo_free(bo);
+               r = amdgpu_bo_free(buf_handle);
                CU_ASSERT_EQUAL(r, 0);
        }
 }