mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed cListBase::Move() in case From and To are equal
This commit is contained in:
parent
73ccde16e8
commit
48de95f5d2
@ -2553,6 +2553,7 @@ Sundararaj Reel <sundararaj.reel@googlemail.com>
|
|||||||
for reporting a bug in handling symbolic links in cRecordings::ScanVideoDir()
|
for reporting a bug in handling symbolic links in cRecordings::ScanVideoDir()
|
||||||
for reporting a memory leak in cRecordings::ScanVideoDir() in case there are too
|
for reporting a memory leak in cRecordings::ScanVideoDir() in case there are too
|
||||||
many link levels
|
many link levels
|
||||||
|
for reporting a bug in cListBase::Move() in case From and To are equal
|
||||||
|
|
||||||
Ales Jurik <ajurik@quick.cz>
|
Ales Jurik <ajurik@quick.cz>
|
||||||
for reporting broken SI data on Czech/Slovak channels after changing the default
|
for reporting broken SI data on Czech/Slovak channels after changing the default
|
||||||
|
2
HISTORY
2
HISTORY
@ -6807,3 +6807,5 @@ Video Disk Recorder Revision History
|
|||||||
descriptions with blanks (thanks to Torsten Lang for reporting a problem with
|
descriptions with blanks (thanks to Torsten Lang for reporting a problem with
|
||||||
EPG data from BSkyB's "MTV MUSIC", S28.2E-2-2010-7012).
|
EPG data from BSkyB's "MTV MUSIC", S28.2E-2-2010-7012).
|
||||||
- Fixed cDvbSubtitleConverter::SetOsdData() (thanks to Rolf Ahrenberg).
|
- Fixed cDvbSubtitleConverter::SetOsdData() (thanks to Rolf Ahrenberg).
|
||||||
|
- Fixed cListBase::Move() in case From and To are equal (reported by Sundararaj
|
||||||
|
Reel).
|
||||||
|
4
tools.c
4
tools.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: tools.c 2.19 2011/12/04 14:52:38 kls Exp $
|
* $Id: tools.c 2.20 2012/01/11 11:21:43 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
@ -1913,7 +1913,7 @@ void cListBase::Move(int From, int To)
|
|||||||
|
|
||||||
void cListBase::Move(cListObject *From, cListObject *To)
|
void cListBase::Move(cListObject *From, cListObject *To)
|
||||||
{
|
{
|
||||||
if (From && To) {
|
if (From && To && From != To) {
|
||||||
if (From->Index() < To->Index())
|
if (From->Index() < To->Index())
|
||||||
To = To->Next();
|
To = To->Next();
|
||||||
if (From == objects)
|
if (From == objects)
|
||||||
|
Loading…
Reference in New Issue
Block a user