Kaydet (Commit) d638ad81 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

clang-analyzer-deadcode.DeadStores

Change-Id: I9570057473f844c55b88d38f24f8156ea7c6c90c
üst bd60974b
......@@ -214,9 +214,8 @@ OString MyWin::processCommand( const OString& rCommand )
else
{
ssize_t nBytes = 0;
nBytes = write( nSocket, rCommand.getStr(), rCommand.getLength() );
nBytes = write( nSocket, "\n", 1 );
nBytes = 0;
write( nSocket, rCommand.getStr(), rCommand.getLength() );
write( nSocket, "\n", 1 );
char buf[256];
do
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment