server: Remove dead initializations (clang).
diff --git a/server/handle.c b/server/handle.c index 2aaec37..9d91f16 100644 --- a/server/handle.c +++ b/server/handle.c
@@ -126,7 +126,7 @@ { int i; struct handle_table *table = (struct handle_table *)obj; - struct handle_entry *entry = table->entries; + struct handle_entry *entry; assert( obj->ops == &handle_table_ops );