From b6c7677778031426f161b18da10459541299537e Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 29 Jul 2005 14:41:40 +0000 Subject: [PATCH] Removed a no longer used variable. --- server/queue.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/queue.c b/server/queue.c index 0b40a2a18f6..8cee4ab41fd 100644 --- a/server/queue.c +++ b/server/queue.c @@ -260,7 +260,6 @@ static struct msg_queue *create_msg_queue( struct thread *thread, struct thread_ void free_msg_queue( struct thread *thread ) { struct process *process = thread->process; - struct thread_input *input; remove_thread_hooks( thread ); if (!thread->queue) return; @@ -275,7 +274,6 @@ void free_msg_queue( struct thread *thread ) process->idle_event = NULL; } } - input = thread->queue->input; release_object( thread->queue ); thread->queue = NULL; } -- 2.11.4.GIT