mirror of
https://github.com/libssh2/libssh2.git
synced 2025-11-05 09:30:35 +03:00
libssh2_publickey_init: remove unused variables
This commit is contained in:
@@ -428,17 +428,16 @@ libssh2_publickey_init(LIBSSH2_SESSION * session)
|
|||||||
/* Error */
|
/* Error */
|
||||||
{
|
{
|
||||||
unsigned long status, descr_len, lang_len;
|
unsigned long status, descr_len, lang_len;
|
||||||
unsigned char *descr, *lang;
|
|
||||||
|
|
||||||
status = _libssh2_ntohu32(s);
|
status = _libssh2_ntohu32(s);
|
||||||
s += 4;
|
s += 4;
|
||||||
descr_len = _libssh2_ntohu32(s);
|
descr_len = _libssh2_ntohu32(s);
|
||||||
s += 4;
|
s += 4;
|
||||||
descr = s;
|
/* description starts here */
|
||||||
s += descr_len;
|
s += descr_len;
|
||||||
lang_len = _libssh2_ntohu32(s);
|
lang_len = _libssh2_ntohu32(s);
|
||||||
s += 4;
|
s += 4;
|
||||||
lang = s;
|
/* lang starts here */
|
||||||
s += lang_len;
|
s += lang_len;
|
||||||
|
|
||||||
if (s >
|
if (s >
|
||||||
|
|||||||
Reference in New Issue
Block a user