diff options
author | Emil Velikov <[email protected]> | 2016-11-24 20:30:44 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-11-28 19:51:22 +0000 |
commit | 78707a15f205f9c2f45dc43ccbb99eb43029dc78 (patch) | |
tree | 6b053694d366f42ad97a4a12641e71f82968b426 /src/amd | |
parent | a1cf494f7740c2afb851ffc3248e2cfa54d74ead (diff) |
radv: don't leak the fd if radv_physical_device_init() succeeds
radv_amdgpu_winsys_create() does not take ownership of the fd, thus we
end up leaking it as we return with VK_SUCCESS.
Cc: Dave Airlie <[email protected]>
Cc: "13.0" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index f89fc9dde57..0dbb3f8a07d 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -130,6 +130,7 @@ radv_physical_device_init(struct radv_physical_device *device, fprintf(stderr, "WARNING: radv is not a conformant vulkan implementation, testing use only.\n"); device->name = device->rad_info.name; + close(fd); return VK_SUCCESS; fail: |