mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed deleting the 'skinDescriptions' in cMenuSetupOSD::~cMenuSetupOSD()
This commit is contained in:
parent
a512b9a9fa
commit
2e01178e54
@ -1877,6 +1877,7 @@ Tobias Grimm <listaccount@e-tobi.net>
|
|||||||
for suggesting to use geteuid() to check whether VDR is running as user 'root'
|
for suggesting to use geteuid() to check whether VDR is running as user 'root'
|
||||||
for fixing a memory leak in handling external EPG data
|
for fixing a memory leak in handling external EPG data
|
||||||
for fixing a memory leak in closing the video file during replay
|
for fixing a memory leak in closing the video file during replay
|
||||||
|
for fixing deleting the 'skinDescriptions' in cMenuSetupOSD::~cMenuSetupOSD()
|
||||||
|
|
||||||
Helge Lenz <h.lenz@gmx.de>
|
Helge Lenz <h.lenz@gmx.de>
|
||||||
for reporting a bug in setting the 'Delta' parameter when calling the shutdown
|
for reporting a bug in setting the 'Delta' parameter when calling the shutdown
|
||||||
|
4
HISTORY
4
HISTORY
@ -4716,7 +4716,7 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed automatically updating the CAM menu in case the whole operation (for
|
- Fixed automatically updating the CAM menu in case the whole operation (for
|
||||||
instance a firmware update) takes longer than the menu timeout.
|
instance a firmware update) takes longer than the menu timeout.
|
||||||
|
|
||||||
2006-05-20: Version 1.4.0-2
|
2006-05-25: Version 1.4.0-2
|
||||||
|
|
||||||
- Removed leftover LSMOD=... line from 'runvdr'.
|
- Removed leftover LSMOD=... line from 'runvdr'.
|
||||||
- Modified the Makefile to copy additional libraries a plugin might provide (suggested
|
- Modified the Makefile to copy additional libraries a plugin might provide (suggested
|
||||||
@ -4725,3 +4725,5 @@ Video Disk Recorder Revision History
|
|||||||
'-a' was given (based on a patch from Werner Fink). To avoid having to increment
|
'-a' was given (based on a patch from Werner Fink). To avoid having to increment
|
||||||
the API version, several #if checks have been introduced around this. These will
|
the API version, several #if checks have been introduced around this. These will
|
||||||
be removed once the API version actually needs to be incremented.
|
be removed once the API version actually needs to be incremented.
|
||||||
|
- Fixed deleting the 'skinDescriptions' in cMenuSetupOSD::~cMenuSetupOSD() (thanks
|
||||||
|
to Tobias Grimm).
|
||||||
|
4
menu.c
4
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 1.435 2006/04/28 12:48:01 kls Exp $
|
* $Id: menu.c 1.436 2006/05/25 12:24:53 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -2131,7 +2131,7 @@ cMenuSetupOSD::cMenuSetupOSD(void)
|
|||||||
cMenuSetupOSD::~cMenuSetupOSD()
|
cMenuSetupOSD::~cMenuSetupOSD()
|
||||||
{
|
{
|
||||||
cFont::SetCode(I18nCharSets()[Setup.OSDLanguage]);
|
cFont::SetCode(I18nCharSets()[Setup.OSDLanguage]);
|
||||||
delete skinDescriptions;
|
delete[] skinDescriptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cMenuSetupOSD::Set(void)
|
void cMenuSetupOSD::Set(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user