sectionsdclient: correctly initialize CurrentNextInfo with c'tor

This commit is contained in:
Stefan Seyfried
2012-10-31 22:58:58 +01:00
parent 5394321ea8
commit 9dc4b03248

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
{