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 ) ...@@ -214,9 +214,8 @@ OString MyWin::processCommand( const OString& rCommand )
else else
{ {
ssize_t nBytes = 0; ssize_t nBytes = 0;
nBytes = write( nSocket, rCommand.getStr(), rCommand.getLength() ); write( nSocket, rCommand.getStr(), rCommand.getLength() );
nBytes = write( nSocket, "\n", 1 ); write( nSocket, "\n", 1 );
nBytes = 0;
char buf[256]; char buf[256];
do 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