Browse Source

Merge pull request #6141 from lat9nq/cfg_gphcs_stack_use

configure_graphics: Prevent stack-use-after-scope
nce_cpp
LC 5 years ago
committed by GitHub
parent
commit
9bdff13849
  1. 2
      src/yuzu/configuration/configure_graphics.cpp

2
src/yuzu/configuration/configure_graphics.cpp

@ -227,7 +227,7 @@ void ConfigureGraphics::RetrieveVulkanDevices() try {
vulkan_devices.clear(); vulkan_devices.clear();
vulkan_devices.reserve(physical_devices.size()); vulkan_devices.reserve(physical_devices.size());
for (const VkPhysicalDevice device : physical_devices) { 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)); vulkan_devices.push_back(QString::fromStdString(name));
} }

Loading…
Cancel
Save