summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-07-31 23:42:33 +0200
committerGitHub <noreply@github.com>2022-07-31 23:42:33 +0200
commit3bd726798aae9350365c6318af13c23bdce1759b (patch)
treecc65994f5877dd77f0797e0618421224644b97a3
parentMerge pull request #8684 from liamwhite/delete-shader (diff)
parentProperly write out the command buffer when serving close request (diff)
downloadyuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar.gz
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar.bz2
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar.lz
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar.xz
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.tar.zst
yuzu-3bd726798aae9350365c6318af13c23bdce1759b.zip
-rw-r--r--src/core/hle/service/service.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index c64291e7f..dadaf897f 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -194,13 +194,16 @@ Result ServiceFrameworkBase::HandleSyncRequest(Kernel::KServerSession& session,
Kernel::HLERequestContext& ctx) {
const auto guard = LockService();
+ Result result = ResultSuccess;
+
switch (ctx.GetCommandType()) {
case IPC::CommandType::Close:
case IPC::CommandType::TIPC_Close: {
session.Close();
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ResultSuccess);
- return IPC::ERR_REMOTE_PROCESS_DEAD;
+ result = IPC::ERR_REMOTE_PROCESS_DEAD;
+ break;
}
case IPC::CommandType::ControlWithContext:
case IPC::CommandType::Control: {
@@ -227,7 +230,7 @@ Result ServiceFrameworkBase::HandleSyncRequest(Kernel::KServerSession& session,
ctx.WriteToOutgoingCommandBuffer(ctx.GetThread());
}
- return ResultSuccess;
+ return result;
}
/// Initialize Services