Merge pull request #6141 from lat9nq/cfg_gphcs_stack_use

configure_graphics: Prevent stack-use-after-scope
This commit is contained in:
LC 2021-04-04 18:16:50 -04:00 committed by GitHub
commit 7feb490f83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,7 +227,7 @@ void ConfigureGraphics::RetrieveVulkanDevices() try {
vulkan_devices.clear();
vulkan_devices.reserve(physical_devices.size());
for (const VkPhysicalDevice device : physical_devices) {
const char* const name = vk::PhysicalDevice(device, dld).GetProperties().deviceName;
const std::string name = vk::PhysicalDevice(device, dld).GetProperties().deviceName;
vulkan_devices.push_back(QString::fromStdString(name));
}