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