Skip to content
Snippets Groups Projects
Unverified Commit 3ff0c70c authored by Hexagon12's avatar Hexagon12 Committed by GitHub
Browse files

Merge pull request #2487 from lioncash/service-return

service/am: Add missing return in error case for IStorageAccessor's Read/Write()
parents 4452195d 88c263ee
No related branches found
No related tags found
No related merge requests found
......@@ -835,6 +835,7 @@ void IStorageAccessor::Write(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ERR_SIZE_OUT_OF_BOUNDS);
return;
}
std::memcpy(backing.buffer.data() + offset, data.data(), data.size());
......@@ -857,6 +858,7 @@ void IStorageAccessor::Read(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ERR_SIZE_OUT_OF_BOUNDS);
return;
}
ctx.WriteBuffer(backing.buffer.data() + offset, size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment