rpcrt4: Fixed dead increments (llvm/clang).

This commit is contained in:
Ricardo Filipe 2008-11-13 12:21:10 +00:00 committed by Alexandre Julliard
parent 68d76db6d4
commit 16920c1da7
1 changed files with 0 additions and 2 deletions

View File

@ -479,7 +479,6 @@ static size_t rpcrt4_ncacn_np_get_top_of_tower(unsigned char *tower_data,
memcpy(tower_data, networkaddr, networkaddr_size);
else
tower_data[0] = 0;
tower_data += networkaddr_size;
return size;
}
@ -692,7 +691,6 @@ static size_t rpcrt4_ncalrpc_get_top_of_tower(unsigned char *tower_data,
pipe_floor->count_rhs = endpoint_size;
memcpy(tower_data, endpoint, endpoint_size);
tower_data += endpoint_size;
return size;
}