summaryrefslogtreecommitdiff
path: root/src/core/frontend
diff options
context:
space:
mode:
authorGravatar Lioncash2021-09-22 18:10:36 -0400
committerGravatar Lioncash2021-09-22 18:10:39 -0400
commit091e1411422c62ef358c8d3750a92735858b1a61 (patch)
tree5ef9b46de26525aefcb4759a9ad34ae46872b5e1 /src/core/frontend
parentcommon/uuid: Add validity checking functions to interface (diff)
downloadyuzu-091e1411422c62ef358c8d3750a92735858b1a61.tar.gz
yuzu-091e1411422c62ef358c8d3750a92735858b1a61.tar.xz
yuzu-091e1411422c62ef358c8d3750a92735858b1a61.zip
core/profile_select: Avoid uninitialized read in SelectProfile()
The default constructor of UUID doesn't initialize its data members, so we need to directly initialize it to be invalid.
Diffstat (limited to 'src/core/frontend')
-rw-r--r--src/core/frontend/applets/profile_select.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/frontend/applets/profile_select.cpp b/src/core/frontend/applets/profile_select.cpp
index 4c58c310f..3e4f90be2 100644
--- a/src/core/frontend/applets/profile_select.cpp
+++ b/src/core/frontend/applets/profile_select.cpp
@@ -13,7 +13,8 @@ ProfileSelectApplet::~ProfileSelectApplet() = default;
13void DefaultProfileSelectApplet::SelectProfile( 13void DefaultProfileSelectApplet::SelectProfile(
14 std::function<void(std::optional<Common::UUID>)> callback) const { 14 std::function<void(std::optional<Common::UUID>)> callback) const {
15 Service::Account::ProfileManager manager; 15 Service::Account::ProfileManager manager;
16 callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{})); 16 callback(manager.GetUser(Settings::values.current_user.GetValue())
17 .value_or(Common::UUID{Common::INVALID_UUID}));
17 LOG_INFO(Service_ACC, "called, selecting current user instead of prompting..."); 18 LOG_INFO(Service_ACC, "called, selecting current user instead of prompting...");
18} 19}
19 20