Skip to content

Commit

Permalink
Fix OutputStream construction in makeOutgoingResponseCore
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Oct 15, 2024
1 parent ab69b4e commit 5d9e433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/Ice/OutgoingResponse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace
OutgoingResponse makeOutgoingResponseCore(std::exception_ptr exc, const Current& current)
{
assert(exc);
OutputStream ostr{current.adapter->getCommunicator(), Ice::currentProtocolEncoding};
OutputStream ostr{Ice::currentProtocolEncoding};

if (current.requestId != 0)
{
Expand Down

0 comments on commit 5d9e433

Please sign in to comment.