summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-03-11 18:14:59 +0100
committerhorchi <vdr@jwendel.de>2018-03-11 18:14:59 +0100
commit8e00903cc5bbd3476288a2211c580f58bdfbb9df (patch)
tree7840e66e963c20aa93813ed713d3242410d0d6b2
parent92e05e8cbf57fa45a87027484929c033c4002d14 (diff)
downloadvdr-plugin-epg2vdr-8e00903cc5bbd3476288a2211c580f58bdfbb9df.tar.gz
vdr-plugin-epg2vdr-8e00903cc5bbd3476288a2211c580f58bdfbb9df.tar.bz2
2018-03-11 version 1.1.95 (horchi)\n - bugfix: Fixed uninitialzed variable\n\n1.1.95
-rw-r--r--HISTORY.h5
-rw-r--r--menu.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/HISTORY.h b/HISTORY.h
index 9930007..43ed8fb 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -5,7 +5,7 @@
*
*/
-#define _VERSION "1.1.94"
+#define _VERSION "1.1.95"
#define VERSION_DATE "11.03.2018"
#define DB_API 7
@@ -19,6 +19,9 @@
/*
* ------------------------------------
+2018-03-11 version 1.1.95 (horchi)
+ - bugfix: Fixed uninitialzed variable
+
2018-03-11 version 1.1.94 (horchi)
- change: Porting to dbapi 7 changes of epgd
diff --git a/menu.h b/menu.h
index 93d44db..b6957f9 100644
--- a/menu.h
+++ b/menu.h
@@ -319,6 +319,8 @@ class cEpgMenuTextItem : public cOsdItem
cEpgMenuTextItem(const char* aId, const char* text)
{
+ row = 0;
+ id = na;
cid = strdup(aId);
SetText(text);
}