diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:07:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:07:27 +0200 |
commit | b943bf2c503baa79184d8088d28fa740b656db74 (patch) | |
tree | c99f15935177a08bb0d4d4efb16ab34a7b8020ed | |
parent | 929d3e9ba290751aca1c0a16d2498968bdc1e3c1 (diff) | |
download | vdr-b943bf2c503baa79184d8088d28fa740b656db74.tar.gz vdr-b943bf2c503baa79184d8088d28fa740b656db74.tar.bz2 |
Fixed a new[]/delete mismatch in cMenuEditStrItem::LeaveEditMode()
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | menuitems.c | 8 |
3 files changed, 7 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 82af3922..3b92a9f9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1530,6 +1530,7 @@ Udo Richter <udo_richter@gmx.de> for fixing clearing color buttons in the 'curses' skin for adding a missing error report to cCuttingThread::Action() for reporting a problem in handling reallocated memory in cCharSetConv::Convert() + for fixing a new[]/delete mismatch in cMenuEditStrItem::LeaveEditMode() Sven Kreiensen <svenk@kammer.uni-hannover.de> for his help in keeping 'channels.conf.terr' up to date @@ -5462,3 +5462,5 @@ Video Disk Recorder Revision History - Updated the Italian OSD texts (thanks to Diego Pierotto). - Fixed handling reallocated memory in cCharSetConv::Convert() (reported by Udo Richter). +- Fixed a new[]/delete mismatch in cMenuEditStrItem::LeaveEditMode() (thanks to + Udo Richter). diff --git a/menuitems.c b/menuitems.c index bcfef6ea..732aea25 100644 --- a/menuitems.c +++ b/menuitems.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.c 1.52 2007/10/13 10:39:40 kls Exp $ + * $Id: menuitems.c 1.53 2007/10/13 12:05:37 kls Exp $ */ #include "menuitems.h" @@ -302,11 +302,11 @@ void cMenuEditStrItem::LeaveEditMode(bool SaveValue) stripspace(value); } lengthUtf8 = 0; - delete valueUtf8; + delete[] valueUtf8; valueUtf8 = NULL; - delete allowedUtf8; + delete[] allowedUtf8; allowedUtf8 = NULL; - delete charMapUtf8; + delete[] charMapUtf8; charMapUtf8 = NULL; pos = -1; offset = 0; |