authd: opm: avoid clang static analysis warning
Remove unused `lookup` variables.
This commit is contained in:
parent
b9a6f1e5a1
commit
4a9f4dccb8
1 changed files with 0 additions and 7 deletions
|
@ -310,8 +310,6 @@ end:
|
||||||
static void
|
static void
|
||||||
socks4_connected(struct opm_scan *scan)
|
socks4_connected(struct opm_scan *scan)
|
||||||
{
|
{
|
||||||
struct auth_client *auth = scan->auth;
|
|
||||||
struct opm_lookup *lookup = get_provider_data(auth, SELF_PID);
|
|
||||||
uint8_t sendbuf[9]; /* Size we're building */
|
uint8_t sendbuf[9]; /* Size we're building */
|
||||||
uint8_t *c = sendbuf;
|
uint8_t *c = sendbuf;
|
||||||
|
|
||||||
|
@ -333,13 +331,9 @@ static void
|
||||||
socks5_connected(struct opm_scan *scan)
|
socks5_connected(struct opm_scan *scan)
|
||||||
{
|
{
|
||||||
struct auth_client *auth = scan->auth;
|
struct auth_client *auth = scan->auth;
|
||||||
struct opm_lookup *lookup = get_provider_data(auth, SELF_PID);
|
|
||||||
uint8_t sendbuf[25]; /* Size we're building */
|
uint8_t sendbuf[25]; /* Size we're building */
|
||||||
uint8_t *c = sendbuf;
|
uint8_t *c = sendbuf;
|
||||||
|
|
||||||
auth = scan->auth;
|
|
||||||
lookup = get_provider_data(auth, SELF_PID);
|
|
||||||
|
|
||||||
/* Build the version header and socks request
|
/* Build the version header and socks request
|
||||||
* version header (3 bytes): version, number of auth methods, auth type (0 for none)
|
* version header (3 bytes): version, number of auth methods, auth type (0 for none)
|
||||||
* connect req (3 bytes): version, command (1 = connect), reserved (0)
|
* connect req (3 bytes): version, command (1 = connect), reserved (0)
|
||||||
|
@ -377,7 +371,6 @@ static void
|
||||||
http_connect_connected(struct opm_scan *scan)
|
http_connect_connected(struct opm_scan *scan)
|
||||||
{
|
{
|
||||||
struct auth_client *auth = scan->auth;
|
struct auth_client *auth = scan->auth;
|
||||||
struct opm_lookup *lookup = get_provider_data(auth, SELF_PID);
|
|
||||||
char sendbuf[128]; /* A bit bigger than we need but better safe than sorry */
|
char sendbuf[128]; /* A bit bigger than we need but better safe than sorry */
|
||||||
char *c = sendbuf;
|
char *c = sendbuf;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue