mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Now deleting any previously allocated pixmaps in cOsd::SetAreas()
This commit is contained in:
parent
8ef71dbbdf
commit
b6b9a148c6
1
HISTORY
1
HISTORY
@ -7606,3 +7606,4 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed the description of the OSD drawing functions DrawEllipse() (the values -5...-8
|
- Fixed the description of the OSD drawing functions DrawEllipse() (the values -5...-8
|
||||||
for the Quadrants parameter are not implemented).
|
for the Quadrants parameter are not implemented).
|
||||||
- Made cOsd::DestroyPixmap() "NULL proof".
|
- Made cOsd::DestroyPixmap() "NULL proof".
|
||||||
|
- Now deleting any previously allocated pixmaps in cOsd::SetAreas().
|
||||||
|
6
osd.c
6
osd.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: osd.c 2.36 2013/02/13 12:52:07 kls Exp $
|
* $Id: osd.c 2.37 2013/02/13 12:55:26 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "osd.h"
|
#include "osd.h"
|
||||||
@ -1803,6 +1803,10 @@ eOsdError cOsd::SetAreas(const tArea *Areas, int NumAreas)
|
|||||||
if (Result == oeOk) {
|
if (Result == oeOk) {
|
||||||
while (numBitmaps)
|
while (numBitmaps)
|
||||||
delete bitmaps[--numBitmaps];
|
delete bitmaps[--numBitmaps];
|
||||||
|
for (int i = 0; i < pixmaps.Size(); i++) {
|
||||||
|
delete pixmaps[i];
|
||||||
|
pixmaps[i] = NULL;
|
||||||
|
}
|
||||||
width = height = 0;
|
width = height = 0;
|
||||||
isTrueColor = NumAreas == 1 && Areas[0].bpp == 32;
|
isTrueColor = NumAreas == 1 && Areas[0].bpp == 32;
|
||||||
if (isTrueColor) {
|
if (isTrueColor) {
|
||||||
|
Loading…
Reference in New Issue
Block a user