File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ SocketFrame::State RemoteToolRequest::ReadInternal(ByteOrderDataStreamReader& st
3030 stream >> m_clientId;
3131 stream >> m_sessionId;
3232 stream >> m_fileData;
33- stream >> m_invocation.m_arglist .m_args ;
33+ StringVector args;
34+ stream >> args;
35+ m_invocation.m_arglist = ParseArgumentList (args);
3436 stream >> m_invocation.m_id .m_toolId ;
3537 stream >> m_compression;
3638 return stOk;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class RemoteToolRequest : public SocketFrameExt {
2929
3030 std::string m_clientId;
3131 uint64_t m_sessionId;
32- ToolCommandline m_invocation;
32+ ToolCommandline m_invocation;
3333 ByteArrayHolder m_fileData;
3434 CompressionInfo m_compression;
3535
You can’t perform that action at this time.
0 commit comments