From 7cd6103ff77307644980208d115063ce064181f3 Mon Sep 17 00:00:00 2001 From: chrisparker126 Date: Mon, 17 May 2010 14:27:05 +0000 Subject: [PATCH] intialised channel info file count correctly git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2927 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/rsiface/rschannels.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretroshare/src/rsiface/rschannels.h b/libretroshare/src/rsiface/rschannels.h index 81de6e1a7..293896b30 100644 --- a/libretroshare/src/rsiface/rschannels.h +++ b/libretroshare/src/rsiface/rschannels.h @@ -60,7 +60,7 @@ class ChannelInfo class ChannelMsgInfo { public: - ChannelMsgInfo() {} + ChannelMsgInfo () : count(0), size(0) {} std::string channelId; std::string msgId; @@ -79,7 +79,7 @@ class ChannelMsgInfo class ChannelMsgSummary { public: - ChannelMsgSummary() {} + ChannelMsgSummary() : count(0) {} std::string channelId; std::string msgId;