turnip: delete tu_physical_device path field

Resolves a "strncpy specified bound 20 equals destination size" warning.

Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6664>
This commit is contained in:
Jonathan Marek 2020-08-13 13:50:46 -04:00 committed by Marge Bot
parent e394ff9b5f
commit bd53a25592
2 changed files with 0 additions and 3 deletions

View file

@ -301,8 +301,6 @@ tu_drm_device_init(struct tu_physical_device *device,
vk_object_base_init(NULL, &device->base, VK_OBJECT_TYPE_PHYSICAL_DEVICE);
device->instance = instance;
assert(strlen(path) < ARRAY_SIZE(device->path));
strncpy(device->path, path, ARRAY_SIZE(device->path));
if (instance->enabled_extensions.KHR_display) {
master_fd =

View file

@ -178,7 +178,6 @@ struct tu_physical_device
struct tu_instance *instance;
char path[20];
char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
uint8_t driver_uuid[VK_UUID_SIZE];
uint8_t device_uuid[VK_UUID_SIZE];