Browse Source
Merge pull request #6083 from Morph1984/bsd-avoid-writebuffer
bsd: Avoid writing empty buffers
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
2 deletions
-
src/core/hle/service/sockets/bsd.cpp
|
|
|
@ -42,7 +42,9 @@ void BSD::PollWork::Execute(BSD* bsd) { |
|
|
|
} |
|
|
|
|
|
|
|
void BSD::PollWork::Response(Kernel::HLERequestContext& ctx) { |
|
|
|
ctx.WriteBuffer(write_buffer); |
|
|
|
if (write_buffer.size() > 0) { |
|
|
|
ctx.WriteBuffer(write_buffer); |
|
|
|
} |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4}; |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
@ -55,7 +57,9 @@ void BSD::AcceptWork::Execute(BSD* bsd) { |
|
|
|
} |
|
|
|
|
|
|
|
void BSD::AcceptWork::Response(Kernel::HLERequestContext& ctx) { |
|
|
|
ctx.WriteBuffer(write_buffer); |
|
|
|
if (write_buffer.size() > 0) { |
|
|
|
ctx.WriteBuffer(write_buffer); |
|
|
|
} |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 5}; |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|