mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 12:40:23 +01:00
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:
parent
e394ff9b5f
commit
bd53a25592
2 changed files with 0 additions and 3 deletions
|
|
@ -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 =
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue