summaryrefslogtreecommitdiff
path: root/osd.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-06-18 15:06:21 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-06-18 15:06:21 +0200
commit480afc6bc8636b10849a9e61b73151e81b794f93 (patch)
treeccd310fa5aed7bcfe5ec4630599c2f4b6a61542b /osd.c
parentf3ea26c74f534d4981e00adb58d0f4363131275f (diff)
downloadvdr-480afc6bc8636b10849a9e61b73151e81b794f93.tar.gz
vdr-480afc6bc8636b10849a9e61b73151e81b794f93.tar.bz2
Fixed a memory leak in theme description handling
Diffstat (limited to 'osd.c')
-rw-r--r--osd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osd.c b/osd.c
index bad03f3e..d87bee3e 100644
--- a/osd.c
+++ b/osd.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.c 1.54 2004/06/12 13:59:12 kls Exp $
+ * $Id: osd.c 1.55 2004/06/15 20:29:42 kls Exp $
*/
#include "osd.h"
@@ -773,7 +773,7 @@ void cTextScroller::DrawText(void)
{
if (osd) {
for (int i = 0; i < shown; i++)
- osd->DrawText(left, top + i * font->Height(), textWrapper.GetLine(offset + i), colorFg, colorBg, font, width);
+ osd->DrawText(left, top + i * font->Height(), textWrapper.GetLine(offset + i), colorFg, colorBg, font, width);
}
}