From 753e55ef23bb44351b928755502a7918f956cae3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 1 Nov 2010 23:00:07 +0100 Subject: [PATCH] _libssh2_transport_send: remove dead assignment 'data' isn't accessed beyond this point so there's no need to assign it. --- src/transport.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/transport.c b/src/transport.c index 603f3d8..ddb72fe 100644 --- a/src/transport.c +++ b/src/transport.c @@ -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 {