From bd30095c7543fbe01fb87f46c71cc83a052cf37e Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Sun, 31 Oct 2010 17:41:46 +0200 Subject: [PATCH] reds: remove needless buffer in InputsState --- server/reds.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/reds.c b/server/reds.c index 7ab49254..9ce78790 100644 --- a/server/reds.c +++ b/server/reds.c @@ -208,8 +208,6 @@ typedef struct VDIPortState { typedef struct InputsState { Channel *channel; RedsStreamContext *peer; - uint8_t buf[RECIVE_BUF_SIZE]; - uint32_t end_pos; IncomingHandler in_handler; OutgoingHandler out_handler; VDAgentMouseState mouse_state; @@ -2431,7 +2429,6 @@ static void inputs_link(Channel *channel, RedsStreamContext *peer, int migration } inputs_state->peer = peer; - inputs_state->end_pos = 0; inputs_state->channel = channel; inputs_state->in_handler.parser = spice_get_client_channel_parser(SPICE_CHANNEL_INPUTS, NULL); inputs_state->in_handler.opaque = inputs_state;