sectionsdclient: correctly initialize CurrentNextInfo with c'tor

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9dc4b03248
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-10-31 (Wed, 31 Oct 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-10-31 22:58:58 +01:00
parent 2d7685ca2c
commit a9bc076b45

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
{