diff --git a/server/red-worker.c b/server/red-worker.c index 12ce4635..f6223ef2 100644 --- a/server/red-worker.c +++ b/server/red-worker.c @@ -469,7 +469,6 @@ CommonChannelClient *common_channel_new_client(CommonChannel *common, return NULL; } CommonChannelClient *common_cc = (CommonChannelClient*)rcc; - common_cc->worker = common->worker; common_cc->id = common->worker->qxl->id; common->during_target_migrate = mig_target; diff --git a/server/red-worker.h b/server/red-worker.h index f14a553d..005c15f4 100644 --- a/server/red-worker.h +++ b/server/red-worker.h @@ -28,7 +28,6 @@ typedef struct CommonChannelClient { RedChannelClient base; uint32_t id; - RedWorker *worker; int is_low_bandwidth; } CommonChannelClient;