diff options
author | lordjaxom <lordjaxom> | 2005-09-20 18:22:56 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-09-20 18:22:56 +0000 |
commit | 39a54ec230977ea1d532b3366b1a1d6025716bf4 (patch) | |
tree | 6b8386421bc83ce5c498776f1e6ec698a04e784b /display.c | |
parent | 136f061aaf2528cab7117bc1f5459a7930ccc1c8 (diff) | |
download | vdr-plugin-text2skin-39a54ec230977ea1d532b3366b1a1d6025716bf4.tar.gz vdr-plugin-text2skin-39a54ec230977ea1d532b3366b1a1d6025716bf4.tar.bz2 |
- fixed crash due to uninitialized pointer (thanks to Frank Enderle)
Diffstat (limited to 'display.c')
-rw-r--r-- | display.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * $Id: display.c,v 1.23 2005/06/05 21:39:02 lordjaxom Exp $ + * $Id: display.c,v 1.24 2005/09/20 18:22:56 lordjaxom Exp $ */ #include "render.h" @@ -693,6 +693,7 @@ cText2SkinDisplayMenu::cText2SkinDisplayMenu(cText2SkinLoader *Loader): mMessageType(mtStatus), mMessageText(""), mEvent(NULL), + mRecording(NULL), mItems(), mCurrentItem((uint)-1) { |