sectionsdclient: correctly initialize CurrentNextInfo with c'tor

Origin commit data
------------------
Commit: 9dc4b03248
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-10-31 (Wed, 31 Oct 2012)
This commit is contained in:
Stefan Seyfried
2012-10-31 22:58:58 +01:00
parent d9a837683e
commit b45f4b0dba

View File

@@ -149,7 +149,16 @@ class CSectionsdClient : private CBasicClient
};
struct CurrentNextInfo : public responseGetCurrentNextInfoChannelID
{};
{
CurrentNextInfo() {
current_uniqueKey = 0;
current_name = "";
current_fsk = 0x0;
next_uniqueKey = 0;
next_name = "";
flags = 0x0;
}
};
typedef struct
{