The default ctor does not initialize anything.

From: Erik Hovland <erik@hovland.org>


---

 libs/libmythtv/eithelper.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/libs/libmythtv/eithelper.h b/libs/libmythtv/eithelper.h
index 00b09c4..7bfc326 100644
--- a/libs/libmythtv/eithelper.h
+++ b/libs/libmythtv/eithelper.h
@@ -18,7 +18,10 @@ class MSqlQuery;
 class ATSCEvent
 {
   public:
-    ATSCEvent() {}
+    ATSCEvent()
+        : start_time(0),    length(0),
+          etm(0),           desc_length(0),
+          title("unknown"), desc(NULL) {}
     ATSCEvent(uint a, uint b, uint c, QString d,
               const unsigned char *e, uint f)
         : start_time(a), length(b), etm(c), desc_length(f), title(d), desc(e)
