_libssh2_transport_send: remove dead assignment

'data' isn't accessed beyond this point so there's no need to assign it.
This commit is contained in:
Daniel Stenberg 2010-11-01 23:00:07 +01:00
parent 4760e4d051
commit 753e55ef23

View File

@ -751,7 +751,6 @@ int _libssh2_transport_send(LIBSSH2_SESSION *session,
if(rc)
return rc; /* compression failure */
data = p->outbuf;
data_len = dest_len + dest2_len; /* use the combined length */
}
else {