mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 13:49:59 +00:00
Don't add user if the uuid already exists
This commit is contained in:
parent
e9978fd4f5
commit
4e1471ef21
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
namespace Service::Account {
|
namespace Service::Account {
|
||||||
// TODO(ogniK): Get actual error codes
|
// TODO(ogniK): Get actual error codes
|
||||||
constexpr ResultCode ERROR_TOO_MANY_USERS(ErrorModule::Account, -1);
|
constexpr ResultCode ERROR_TOO_MANY_USERS(ErrorModule::Account, -1);
|
||||||
|
constexpr ResultCode ERROR_USER_ALREADY_EXISTS(ErrorModule::Account, -2);
|
||||||
constexpr ResultCode ERROR_ARGUMENT_IS_NULL(ErrorModule::Account, 20);
|
constexpr ResultCode ERROR_ARGUMENT_IS_NULL(ErrorModule::Account, 20);
|
||||||
|
|
||||||
ProfileManager::ProfileManager() {
|
ProfileManager::ProfileManager() {
|
||||||
|
@ -45,6 +46,9 @@ ResultCode ProfileManager::CreateNewUser(UUID uuid, std::array<u8, 0x20> usernam
|
||||||
return ERROR_ARGUMENT_IS_NULL;
|
return ERROR_ARGUMENT_IS_NULL;
|
||||||
if (username[0] == 0x0)
|
if (username[0] == 0x0)
|
||||||
return ERROR_ARGUMENT_IS_NULL;
|
return ERROR_ARGUMENT_IS_NULL;
|
||||||
|
for (unsigned i = 0; i < user_count; i++)
|
||||||
|
if (uuid == profiles[i].user_uuid)
|
||||||
|
return ERROR_USER_ALREADY_EXISTS;
|
||||||
ProfileInfo prof_inf;
|
ProfileInfo prof_inf;
|
||||||
prof_inf.user_uuid = std::move(uuid);
|
prof_inf.user_uuid = std::move(uuid);
|
||||||
prof_inf.username = std::move(username);
|
prof_inf.username = std::move(username);
|
||||||
|
|
Loading…
Reference in a new issue