From 855f2ed2ac6a67e88d6f6626641af508b887cd4b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 12 Aug 2011 10:32:56 +0200 Subject: always set VDAgentDisplayConfig::depth Even if VDAgentDisplayConfig::depth will be unused if the VD_AGENT_DISPLAY_CONFIG_FLAG_SET_COLOR_DEPTH isn't set, it's better to initialize it anyway to avoid warnings from valgrind. --- client/red_client.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'client/red_client.cpp') diff --git a/client/red_client.cpp b/client/red_client.cpp index e0847599..efd9febd 100644 --- a/client/red_client.cpp +++ b/client/red_client.cpp @@ -740,6 +740,7 @@ void RedClient::send_agent_display_config() spice_marshaller_reserve_space(message->marshaller(), sizeof(VDAgentDisplayConfig)); disp_config->flags = 0; + disp_config->depth = 0; if (_display_setting._disable_wallpaper) { disp_config->flags |= VD_AGENT_DISPLAY_CONFIG_FLAG_DISABLE_WALLPAPER; } -- cgit