summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_session.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-24 06:50:04 +0200
committerbunnei <bunneidev@gmail.com>2021-05-06 01:40:52 +0200
commitbf380b858481ef99d7150d322af2c30ac339bcde (patch)
tree823c0fb0cdb300d01fd02567c2126fa6ad582325 /src/core/hle/kernel/k_session.cpp
parenthle: kernel: Do not shutdown twice on emulator close. (diff)
downloadyuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar.gz
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar.bz2
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar.lz
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar.xz
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.tar.zst
yuzu-bf380b858481ef99d7150d322af2c30ac339bcde.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_session.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_session.cpp b/src/core/hle/kernel/k_session.cpp
index 6f4276189..6f5947ce7 100644
--- a/src/core/hle/kernel/k_session.cpp
+++ b/src/core/hle/kernel/k_session.cpp
@@ -15,7 +15,7 @@ KSession::KSession(KernelCore& kernel)
: KAutoObjectWithSlabHeapAndContainer{kernel}, server{kernel}, client{kernel} {}
KSession::~KSession() = default;
-void KSession::Initialize(KClientPort* port_, std::string&& name_) {
+void KSession::Initialize(KClientPort* port_, const std::string& name_) {
// Increment reference count.
// Because reference count is one on creation, this will result
// in a reference count of two. Thus, when both server and client are closed
@@ -32,7 +32,7 @@ void KSession::Initialize(KClientPort* port_, std::string&& name_) {
// Set state and name.
SetState(State::Normal);
- name = std::move(name_);
+ name = name_;
// Set our owner process.
process = kernel.CurrentProcess();