From eaeeea61d31fe2be2d9206c0d3d602f38663dbfc Mon Sep 17 00:00:00 2001 From: Andreas Volz Date: Sat, 26 Nov 2011 23:40:27 +0100 Subject: [PATCH] [PATCH 01/15] Explicit Connection::Private's attributes From: qolyester@green-communications.fr --- src/connection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index e1eec7e..73b3e6d 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -42,12 +42,13 @@ using namespace DBus; Connection::Private::Private(DBusConnection *c, Server::Private *s) -: conn(c) , dispatcher(0), server(s) +: conn(c) , dispatcher(NULL), server(s) { init(); } Connection::Private::Private(DBusBusType type) + : dispatcher(NULL), server(NULL) { InternalError e;