summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-02-19 23:19:30 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2012-02-23 19:03:26 +0100
commitbb54317ec080036badfcd6b89a2b5114395f3c48 (patch)
tree4f19bd6e6c31c9878324024ed40f70e42dbb061e
parent04c98d58507ff34a2f281c15826c8d6cf88cff30 (diff)
mingw: fix initialization list order for VDAgent()
-rw-r--r--vdagent/vdagent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdagent/vdagent.cpp b/vdagent/vdagent.cpp
index 22e9c59..1cfa96d 100644
--- a/vdagent/vdagent.cpp
+++ b/vdagent/vdagent.cpp
@@ -176,9 +176,9 @@ VDAgent::VDAgent()
, _display_setting (VD_AGENT_REGISTRY_KEY)
, _logon_desktop (false)
, _display_setting_initialized (false)
- , _log (NULL)
, _client_caps(NULL)
- , _client_caps_size(NULL)
+ , _client_caps_size(0)
+ , _log (NULL)
{
TCHAR log_path[MAX_PATH];
TCHAR temp_path[MAX_PATH];